--- description: "Go testing: table-driven tests, race detection, coverage reporting" globs: ["**/*.go"] alwaysApply: false --- # Go Testing > This file extends [common/testing.md](../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.