oliverdavies.uk/source/_daily_emails/2023-05-05.md

638 B

title pubDate permalink tags
Getting to green 2023-05-05 daily/2023/05/05/getting-to-green
automated-testing
testing
test-driven development

When doing test-driven development, once you've written a failing (a.k.a. red) test, the main objective is to get to a green (a.k.a. passing) test as quickly as possible via the simplest method.

Even if that means returning a hard-coded value.

Once the test passes, it or the code it's testing can be refactored.

Or you can move on to the next test and, if you need to change the hard-coded value to get both tests to pass, then it is the right time to do so.