Le tre regole dello sviluppo basato sui test dello zio Bob indicano quanto segue:
- You are not allowed to write any production code unless it is to make a failing unit test pass.
- You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.
- You are not allowed to write any more production code than is sufficient to pass the one failing unit test.
Alcune persone sostengono che la seconda regola implica che tu debba sempre aggiungere solo un test in errore (un esempio di comportamento isolato). Ma altri sostengono che potrebbe anche significare che potresti aggiungere più test falliti in una suite di test, a patto che tu smetta di lavorare su ciascun test separato non appena fallisce.
Vorrei sapere quali vantaggi si ottengono limitando te stesso alla scrittura di un solo nuovo test fallito e quindi interrompi la scrittura del codice test fino a quando non lo hai superato.