Made page titles and links consistent
authorMike Jackson <michaelj@epcc.ed.ac.uk>
Tue, 2 Apr 2013 11:21:47 +0000 (04:21 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 04:21:00 +0000 (21:21 -0700)
testing/Conclusion.md
testing/TDD.md

index 6abd6201797f3b6ceb9c764a33519eea634d5b47..ad4012eb854c3472fd619fd2fe6e7095faa46f91 100755 (executable)
@@ -1,4 +1,4 @@
-## Conclusion
+## Conclusions and further information
 
 Testing
 
index 3a2e278ba6d410e2fd11f338c2d409a178e6b2e5..4b0bd2667fe9a9354aa4bd421ac89fd61ba84a51 100755 (executable)
@@ -1,4 +1,4 @@
-## Test Driven Development
+## Test-driven development
 
 Traditionally, we'd write our code, then write the tests. [Test driven development](http://www.amazon.com/Test-Driven-Development-By-Example/dp/0321146530) (TDD), proposed by Kent Beck, is a philosophy that turns this on its head - we write code by *writing the tests first*, then write the code to make the tests pass. If a new feature is needed, another test is written and the code is expanded to meet this new use case. This continues until the code does what is needed. This can be summarised as red-green-refactor: