Skip to content

Instantly share code, notes, and snippets.

@boluocat
Created December 19, 2024 11:07
Show Gist options
  • Save boluocat/bace62c2201cfb7e116a286fb2095519 to your computer and use it in GitHub Desktop.
Save boluocat/bace62c2201cfb7e116a286fb2095519 to your computer and use it in GitHub Desktop.
TDD Mantra

TDD Mantra

When learning about test driven development you'll soon cone across the "Red, Green, Refactor" mantra.

  1. Red: We write a test that does not pass. It may not even compile or execute yet.
  2. Green: We quickly write dirty code to make the test pass.
  3. Refactor: We complete and clean the code using all of our test practices.

Sometime we may try to write the best code in the first step, and we think in this way we can skip "Refator" step.

BUT, the fact is that it's hard to write a code that doesn't need to be improved. At least, I've never written a piece of code that couldn't be improved.

So, TDD starts by writing a failing test, then "just enough code to make it pass".

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