副标题: By Example
作者: Kent Beck
出版社: Addison-Wesley Professional
出版年: 2002-11-18
页数: 240
定价: USD 49.99
装帧: Paperback
ISBN: 9780321146533
作者: Kent Beck
出版社: Addison-Wesley Professional
出版年: 2002-11-18
页数: 240
定价: USD 49.99
装帧: Paperback
ISBN: 9780321146533
内容简介 · · · · · ·
-- Write clean code that works with the help of this groundbreaking software method.-- Begin to write automated tests that allow you to "test on the fly, " and learn to optimize the practice of refactoring.-- Example-driven teaching; Kent Beck's step-by-step instruction will have you using TDD to further your projects.Quite simply, test-driven development is meant to eliminate ... (展开全部)
-- Write clean code that works with the help of this groundbreaking software method.-- Begin to write automated tests that allow you to "test on the fly, " and learn to optimize the practice of refactoring.-- Example-driven teaching; Kent Beck's step-by-step instruction will have you using TDD to further your projects.Quite simply, test-driven development is meant to eliminate fear in application development. While some fear is healthy (often viewed as a conscience that tells programmers to "be careful "), the author believes that byproducts of fear include tentative, grumpy, and uncommunicative programmers who are unable to absorb constructive criticism. When programming teams buy into TDD, they immediately see positive results. They eliminate the fear involved in their jobs, and are better equipped to tackle the difficult challenges that face them. TDD eliminates tentative traits, it teaches programmers to communicate, and it encourages team members to seek out criticism However, even the author admits that grumpiness must be worked out individually In short, the premise behind TDD is that code should be continually tested and refactored. Kent Beck teaches programmers by example, so they can painlessly and dramatically increase the quality of their work.
喜欢读"Test Driven Development"的人也喜欢 · · · · · ·
按有用程度 按页码先后 最新笔记
-
第141页
The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel. Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon. If I had one test broken, I wanted one problem. If I had two ... (更多)The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel.Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon.If I had one test broken, I wanted one problem. If I had two tests broken, I wanted two problems. (收起)2011-11-01 07:27:14 回应
-
第141页
The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel. Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon. If I had one test broken, I wanted one problem. If I had two ... (更多)The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel.Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon.If I had one test broken, I wanted one problem. If I had two tests broken, I wanted two problems. (收起)2011-11-01 07:27:14 回应
-
第141页
The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel. Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon. If I had one test broken, I wanted one problem. If I had two ... (更多)The more stress I feel, the more I run the tests. Running the tests immediately gives me a good feeling, and reduces the number of errors I make, which further reduces the stress I feel.Should you run the test after you write it, even though you know it’s going to fail? No, don’t bother. Test should be fast and get feedback soon.If I had one test broken, I wanted one problem. If I had two tests broken, I wanted two problems. (收起)2011-11-01 07:27:14 回应
书评 · · · · · · (共14条)
我来评论这本书
-
最有用的好评
《测试驱动开发》读后感 5/5有用
-
最有用的中差评
原版的思想是好的翻译确实... 1/1有用
热门评论 最新评论
《测试驱动开发》读后感
-
- LK(Stay here, I'll be back) 这本书的作者是“极限编程”之父Kent Beck,书写得很薄,每一章都只有几页的长度。这就好像用TDD方法写出的代码般,每一个单元都是精巧明快的,使得人们很容易读懂,也使人们更有意愿将其读懂(短的文章更能激发人们的阅读欲望,不是吗?)。加之作者的笔调也十分轻松,这种小薄册要比那些百科全书式的大部头读起来舒服许多。 ...... (4回应)2009-11-27 5/5有用来自 中国电力出版社2004版
测试驱动更多体现的是一种思想
-
- keni 我们并不一定要遵循测试驱动的步骤,因为在n多的公司根本完全无法实施。但是我们可以以测试驱动的思想作为我们思考问题的方法。...... (1回应)2009-03-30 2/2有用来自 中国电力出版社2004版
原版的思想是好的翻译确实有点烂
-
- 莱因哈特·冯·罗严克拉姆(一股无名夜火油然而起) 弱弱的看了几十页,TDD那种对细节的严格把持的精神,却只有靠看上面的测试例子去YY。不知道为什么翻出来的书看着让人这么费劲。我建议找个别的什么出版社再翻译一个版本吧,不然真的只有看原版了。。。。......2008-10-19 1/1有用来自 中国电力出版社2004版
Triangulation
-
- 牧野飞霜 If I get stuck and I don’t know how a complex algorithm should work I’ll write a test for an error case. Then I’ll write a test for the simplest non-error case ......2011-10-31
GUI怎么TDD
-
- 老鼠不偷米(nb,删吧) 测试先行,小步迭代,不断重构,持续集成。XP在组里(就3个人)实施不容易,自己先做点力所能及的吧,就看了《TDD》,可不巧的是目前做的项目是Swing开发的桌面工具,这可是偶做的第一个项目啊,该怎么测试先行呢?看了看marathon,Abbot,JFCUnit的文档,搜了点Winrunner的资料,感觉都是功能测试啊。...... (7回应)2007-01-17 来自 中国电力出版社2004版
测试驱动开发非常适合那些对代码情有独钟的呆子们
-
- orcl_zhang(槑) Kent Beck关于TDD的名言: 测试驱动开发非常适合那些对代码情有独钟的呆子们。我年轻时软件工程生活的一项最令人痛楚的事情就是满怀热情的开始一个项目,然后看着代码随着时间的流失逐渐腐烂。一年后我只想丢掉已经变味的代码,转到开发别的项目中去。测试驱动开发能让你随着时间的流逝对代码依然信心依旧。随着...... (1回应)2010-08-06 来自 中国电力出版社2004版
编程快餐
-
- 二元变量(感觉具有理性无法察觉的理性) Kent的书字字千金。每每薄薄一册,价格都不便宜。Kent的书,读起来不晦涩,简单易懂,可操作性强。 但是考虑到性价比,我更推荐该书的电子版。花个半天读完,便可束之高阁了。因为其核心思想不过寥寥几页。......2010-04-17 来自 中国电力出版社2004版
第一个在"Test Driven Development"的论坛里发言
在哪儿买这本书? · · · · · ·
- 亚马逊 (RMB 493.10)
- 查看1家网店价格 (493.10元起)
- 加入购书单 多本比价 批量购买 已在购书单
- > 点这儿转让 有90人想读,手里有一本闲着?
这本书的其他版本 · · · · · · ( 全部2 )
- 中国电力出版社版 2004-4-1 / 495人读过
以下豆列推荐 · · · · · · (全部)
- 程序员必读经典书籍 (Felven)
- 敏捷图书排行Top 20 (xueh)
- 最佳软件工程图书Top100 (xyb)
- 软件 IT 经典 (uncutstone)
- 项目经理 (tminglei)
谁读这本书?
喜欢这本书的人关注的活动 · · · · · ·
订阅关于Test Driven Development的评论:
feed: rss 2.0











