Testing & QAnotque/claude-code-toolki...
go-testing
Go testing patterns and methodology: table-driven tests, t.Run subtests,
t.Helper helpers, mocking interfaces, benchmarks, race detection, and
synctest. Use when writing new Go tests, modifying existing tests, adding
coverage, fixing failing tests, writing benchmarks, or creating mocks.
Triggered by "go test", "_test.go", "table-driven", "t.Run", "benchmark",
"mock", "race detection", "test coverage". Do NOT use for non-Go testing
(use test-driven-development instead), debugging test failures (use
systematic-debugging), or general Go development without test focus (use
golang-general-engineer directly).