agent/go/pkg/lib/task/code/test-gaps.md
2026-03-21 11:10:44 +00:00

277 B

Test Coverage Gaps

Find untested code paths and write tests for them.

Process

  1. go test -cover ./... to identify coverage
  2. Focus on exported functions with 0% coverage
  3. Write tests using Good/Bad/Ugly naming
  4. Prioritise: error paths > happy paths > edge cases