This is the TDD Workfolw.
- Write a test case, run it. If the test is passed, then write a new test case, run it. Until a test case is failed, set it to RED.
- Then write code based on this test case, run the test case, if it is passed, then set it to GREEN. Else modify the code and repeat to test it, until it is passed.
- After RED and GREEN steps, we can refactor the code to make it better, and don't forget to run the test.
At first time I saw the workflow of TDD, I was confused. If a test is passed at the beginning, what will happen for this test case.
After a short discussing, I knew that if a test case is passed originally without any written code. This test case is no value for next development.