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

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-23 12:32:57 +01: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