Guide
Test Generation
Add or run the smallest useful test scope with clear reporting.
The test workflow is for targeted test creation, test execution, and coverage-driven validation.
It should prove behavior with the smallest useful set of tests instead of broad rewrites.
Testing Priorities
- Happy path
- Error handling
- Edge cases
- Integration boundaries when they are part of the changed behavior
Rules
- Do not encode ambiguous product behavior into tests.
- Prefer targeted tests over sweeping test rewrites.
- If a failure is unexpected, pair the test workflow with
debug.