What are the three steps when using TDD to drive your code development?
- Red: write failed test, Green: write code to pass the test, refactor
- Write all unit tests possible, regression test, write more tests
- Write all lines of code, test it, then correct code on failed tests
- Refactor previous code, write the test, pass the test
- Blue, yellow, pink