Kent Beck 2003
From CSSEMediaWiki
(Difference between revisions)
(Added image.) |
|||
Line 1: | Line 1: | ||
This is Kent Beck's book entitled: '''Test-Driven Development: By Example'''. | This is Kent Beck's book entitled: '''Test-Driven Development: By Example'''. | ||
+ | |||
+ | [[Image:kent-beck-2003-book.jpg]] | ||
The book describes [[Test Driven Development]], whereby tests are written before the corresponding code is written. The basic procedure is as follows: | The book describes [[Test Driven Development]], whereby tests are written before the corresponding code is written. The basic procedure is as follows: |
Latest revision as of 19:48, 10 October 2010
This is Kent Beck's book entitled: Test-Driven Development: By Example.
The book describes Test Driven Development, whereby tests are written before the corresponding code is written. The basic procedure is as follows:
- Write a Unit Test.
- Run the test.
- If it fails, introduce new code. Do this until it passes.
- Repeat.
Be warned, however, that Kent Beck takes (IMO) a very heavy-handed and rigorous approach. He does not like developers to deviate from the TDD procedure unless they are very experienced.