Skip to main content
Back to registry

go-testing

cxuu/golang-skills

Guidelines for writing clear, maintainable Go tests following Google's style.

Installs204
Install command
npx skills add https://github.com/cxuu/golang-skills --skill go-testing
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Guidelines for writing clear, maintainable Go tests following Google's style. Normative : Test failures must be diagnosable without reading the test source. Every failure message should include: Use the standard format: YourFunc(%v) = %v, want %v Always print actual result before expected: Normative : Do not create or use assertion libraries. Assertion libraries fragment the developer experience and often produce unhelpful failure messages. For domain-specific comparisons, return values or errors instead of calling t.Error : Advisory : Prefer cmp.Equal and cmp.Diff for complex types. Avoid unstable comparisons - don't compare JSON/serialized output that may change. Compare semantically instead. Normative : Use t.Error to keep tests going; use t.Fatal only when continuing is impossible.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does go-testing do?

Guidelines for writing clear, maintainable Go tests following Google's style.

Is go-testing good?

go-testing does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does go-testing work with?

go-testing currently lists compatibility with codex, gemini-cli, opencode, cursor, kimi-cli, github-copilot.

What are alternatives to go-testing?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install go-testing?

npx skills add https://github.com/cxuu/golang-skills --skill go-testing

Related skills

More from cxuu/golang-skills

Related skills

Alternatives in Software Engineering