Content deleted Content added
Line 13:
The next step is to make the test pass by writing the code. This step forces the programmer to take the perspective of a client by seeing the code through its interfaces. This is the design driven part of TDD.
=== 3. Run the automated tests ===
The next step is to run the automated testcases and observe if they pass or fail. If they pass, the programmer can be guaranteed that the code meets the testcases written. If there are failures, the code did not meet the testcases.
'''Hmmm... I don't think so :)'''
--[[User:65.247.90.61|65.247.90.61]] 19:25, 4 Jan 2005 (UTC)
=== 4. Refactor ===
The final step is the [[refactoring]] step and any code clean-up necessary will occur here. The testcases are then re-run and observed.
|