tdd-pattern
Installation
SKILL.md
TDD Pattern
Follow test-driven development practices with proper test structure and meaningful assertions.
Write Test First
- Write a failing test that describes the desired behavior
- Implement the minimal code to make the test pass
- Refactor while keeping tests green
This ensures code is testable and requirements are clear before implementation.
Arrange-Act-Assert Pattern
Structure tests clearly: