Test-Driven Development (TDD) เป็นแนวปฏิบัติที่คุณเขียน test ก่อนเขียนโค้ด — โดยทำตามวงจรสั้นๆ ที่วนซ้ำ: เขียน test ที่ล้มเหลว เขียนโค้ดให้ผ่าน แล้ว refactor มันขับเคลื่อนการออกแบบผ่าน test และรับประกันว่าโค้ดสามารถทดสอบได้และได้รับการทดสอบอย่างดี
วงจร TDD: Red, Green, Refactor
1. RED → write a FAILING test for the behavior you want (it fails — the code doesn't exist yet)
2. GREEN → write the MINIMUM code to make the test PASS (just enough, don't over-build)
3. REFACTOR → improve/clean up the code (and tests) while keeping tests GREEN
→ Repeat this short cycle for each small piece of behavior.
Write test (RED) → write code (GREEN) → clean up (REFACTOR) → repeat
