Test-Driven Development (TDD) هي ممارسة تكتب فيها الاختبارات قبل الكود — باتباع دورة قصيرة متكررة: كتابة اختبار فاشل، كتابة كود لتمريره، ثم إعادة هيكلة. إنها تقود التصميم من خلال الاختبارات وتضمن أن الكود قابل للاختبار وموثق بشكل جيد.
دورة TDD: أحمر، أخضر، إعادة هيكلة
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
