go-testing
Installation
SKILL.md
Go Testing Skill
When to Activate
Activate this skill when:
- Writing Go unit tests
- Creating table-driven tests
- Working with test helpers and fixtures
- Mocking dependencies via interfaces
- Running benchmarks or fuzz tests
Quick Commands
# Run all tests
go test ./...
# Verbose output
go test -v ./...