Back to Everything Claude Code

Go Testing

rules/golang/testing.md

1.10.0395 B
Original Source

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:

bash
go test -race ./...

Coverage

bash
go test -cover ./...

Reference

See skill: golang-testing for detailed Go testing patterns and helpers.