Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 432 Bytes

File metadata and controls

5 lines (5 loc) · 432 Bytes

Test Driven Development (TDD)

Rules:

  • You are not allowed to write any production code unless it is to make a failing unit test pass.
  • You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.
  • You are not allowed to write any more production code than is sufficient to pass the one failing unit test.