Files
org_roam/Misc/20250723185829-test_driven_development.org
Zaine a7285933c3
All checks were successful
Build Roam Site / build (push) Successful in 31s
29-05
2026-05-29 08:41:15 +01:00

678 B
Executable File

Test Driven Development

Test-driven development is a way of writing code that involves writing an automated unit-level test case that fails, then writing just enough code to make the test pass, then refactoring both the test code and the production code, then repeating with another new test case. Alternative approaches to writing automated tests is to write all of the production code before starting on the test code or to write all of the test code before starting on the production code.

One example is: Bowling Kata