When learning about test driven development you'll soon cone across the "Red, Green, Refactor" mantra.
- Red: We write a test that does not pass. It may not even compile or execute yet.
- Green: We quickly write dirty code to make the test pass.
- 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".