Back to Everything Claude Code

Go Testing

.cursor/rules/golang-testing.md

1.10.0377 B
Original Source

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:

bash
go test -race ./...

Coverage

bash
go test -cover ./...

Reference

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