457 B
457 B
| paths | |||
|---|---|---|---|
|
Go Testing
This file extends common/testing.md 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.