All skills
Skillintermediate
Go Testing
> This file extends the common testing rule with Go specific content.
Claude Code Knowledge Pack7/10/2026
Overview
Go Testing
This file extends the common testing rule with Go specific content.
Framework
Use the standard go test with table-driven tests.
Race Detection
Always run with the -race flag:
go test -race ./...
Coverage
go test -cover ./...
Reference
See skill: golang-testing for detailed Go testing patterns and helpers.