转载:测试驱动开发三原则
The Three Laws of TDD
测试驱动开发三原则
1. You are not allowed to write any production code unless it is to make a failing unit test pass.
在写完“红色”(无法通过测试)的单元测试代码之前,不允许写任何的产品代码。
2. You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.
除了恰好让单元测试失败的代码(编译错误也是错误的一种),不要写更多的单元测试。
3. You are not allowed to write any more production code than is sufficient to pass the one failing unit test.
所写产品代码应该刚刚能够满足单元测试。
-----------------------------------------
文章大概是 Uncle Bob 在2005年前后所写的文章了,然后看到 Robert C. Martin 在 "Clean Code" 一书中再次提及(网络上有一点点节选)。
两篇文章里面都提供了不少有价值的信息,建议看完整的原文
Done is better than perfect.