From: Mike Jackson Date: Tue, 2 Apr 2013 11:21:47 +0000 (-0700) Subject: Made page titles and links consistent X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=52020ea74d3e109d108b73f7e364cbfe870a4d62;p=swc-testing-nose.git Made page titles and links consistent --- diff --git a/testing/Conclusion.md b/testing/Conclusion.md index 6abd620..ad4012e 100755 --- a/testing/Conclusion.md +++ b/testing/Conclusion.md @@ -1,4 +1,4 @@ -## Conclusion +## Conclusions and further information Testing diff --git a/testing/TDD.md b/testing/TDD.md index 3a2e278..4b0bd26 100755 --- a/testing/TDD.md +++ b/testing/TDD.md @@ -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: