Techniques

Test-driven Development (TDD)

Remember to stick to the test-driven mantra:

  1. Write one line of test code. Make the test fail.

  2. Write one line of application code. Make the test pass.

  3. Goto 1.