show/hide this revision's text 2 added a link to more info

In TDD you write specifications of the systems behaviour and use them to drive the design of the system. You write one test for one tiny behaviour, then watch the test to fail, and then write code to pass the test. At all times you keep the code quality as high as possible by refactoring regularly, so that making more changes is easier.

Examples of how to do TDD: http://butunclebob.com/ArticleS.UncleBob.TheThreeRulesOfTdd http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata

Also see my answer from http://stackoverflow.com/questions/507000/writing-standards-for-unit-testing/510996#510996 - it has examples and links for more information. Here are also good links to follow: http://code.google.com/p/instinct/wiki/UsersGuide

show/hide this revision's text 1

In TDD you write specifications of the systems behaviour and use them to drive the design of the system. You write one test for one tiny behaviour, then watch the test to fail, and then write code to pass the test. At all times you keep the code quality as high as possible by refactoring regularly, so that making more changes is easier.

Examples of how to do TDD: http://butunclebob.com/ArticleS.UncleBob.TheThreeRulesOfTdd http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata

Also see my answer from http://stackoverflow.com/questions/507000/writing-standards-for-unit-testing/510996#510996 - it has examples and links for more information.