TDD的主要目的是设计而不是White Box Test

As Kevin Taylorwrites:

....Its primary purpose is code design. ....

How does it lead to better code design? Test first development works like this.
.....

Developer is designing the application's API and internal implementation by discovering how client code actually must use the application instead of by guessing at how a client might use the application. This shift in perspective leads to extremely concise and efficient designs. It also helps focus the developer on the exact task at hand,making it less likely the developer will stray into writing nice-to-have's or overly-engineered,future-proof code that may never be needed.


原文在http://java.about.com/b/a/117719.htm

相关文章

迭代器模式(Iterator)迭代器模式(Iterator)[Cursor]意图...
高性能IO模型浅析服务器端编程经常需要构造高性能的IO模型,...
策略模式(Strategy)策略模式(Strategy)[Policy]意图:定...
访问者模式(Visitor)访问者模式(Visitor)意图:表示一个...
命令模式(Command)命令模式(Command)[Action/Transactio...
生成器模式(Builder)生成器模式(Builder)意图:将一个对...