Skip to content

Instantly share code, notes, and snippets.

@zkoppert
Last active March 26, 2021 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zkoppert/e4c3d4d9aeb25d7744c080ac93e9a22f to your computer and use it in GitHub Desktop.
Save zkoppert/e4c3d4d9aeb25d7744c080ac93e9a22f to your computer and use it in GitHub Desktop.
TDD Resources

Test Driven Development (TDD)

Videos

Blog Posts

Books, manuals and websites

Three Laws of TDD

Over the years I have come to describe Test Driven Development in terms of three simple rules. They are:

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

Uncle Bob's full article: Source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment