Differences between revisions 1 and 2
Revision 1 as of 2005-09-15 15:51:49
Size: 827
Editor: staselog
Comment: Some ramblings about TDD..
Revision 2 as of 2005-09-15 18:02:51
Size: 840
Editor: 100
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
It goes roughly as follows: write your tests for the code ''before'' you write the code itself. It goes roughly as follows: write UnitTests for the code ''before'' you write the code itself.
Line 17: Line 17:
 * UnitTests

Overview

Test Driven Development (TDD) is a method of designing software.

It goes roughly as follows: write UnitTests for the code before you write the code itself.

Why do it the "non-natural" way, then? Well, there are some benefits and very few - if any - drawbacks:

  • Coding tests means you have to call your non-existing code with all the parameters thus forcing you to think how your library should work, thus it fixes the ["Signature"] of your code
  • You realize many errors in the code before you even wrote it, especially design-related errors
  • You will get better estimate how long coding will take

It is very important to emphasize TDD is not a testing methodology; it is a design methodology.

More information

TestDrivenDevelopment (last edited 2008-11-15 14:00:39 by localhost)

Unable to edit the page? See the FrontPage for instructions.