Test Driven Development Flashcards
1
Q
What is the test driven development process? (5)
A
- Identify small implementable functional increment
- Write automated test.
- Run test → it fails.
- Implement increment and re run test
- Once all tests pass move on.