TDD Workflow
Invoke the TDD Red-Green-Refactor cycle for the given feature or bug fix.
- •Write a failing test that describes the expected behavior
- •Run it to confirm it fails
- •Write the minimum implementation to make it pass
- •Run it to confirm it passes
- •Refactor while keeping tests green
- •Check coverage meets 80% threshold