Test-driven development: Difference between revisions

Content deleted Content added
Line 32:
* Compilers and Interpreters from BNF to production quality implementation
 
It is also important to note that Test-driven Development only proves correctness of design and functionality according to the testcases written. An incorrect testcase that does not meet the specifications will produce incorrect code. Therefore, the emphasis on correctness and design has shifted to writing testcases since they are the drivers. As a result, Test-driven Development is only as good as the tests are.
 
----