agent/pkg/lib/task/code/test-gaps.md
Snider ecd47fe3db revert fcb9c189e5
revert fix(agentic): harden TODO workspace write

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-18 11:22:27 +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