mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
525 B
525 B
| description | globs | alwaysApply | |
|---|---|---|---|
| Go testing: table-driven tests, race detection, coverage reporting |
|
false |
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.