<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/xiaosun" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/xiaosun" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 16 Feb 2009 19:26:00 GMT</lastBuildDate><title>豆豆他爹的生活随笔</title><link>http://blog.csdn.net/xiaosun/</link><item><title>单元测试推广的故事2</title><link>http://blog.csdn.net/xiaosun/archive/2009/02/16/3897333.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/3897333.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/3897333.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3897333</trackback:ping><description>&lt;br /&gt;在新的一年，我和我的团队开始了艰难的单元测试推广工作，说其艰难，是因为明明大家都懂的道理，在推进的过程中是那么得困难重重。幸好，在很多师长、朋友、同事的帮助下，我们还在坚持。。。&lt;br /&gt;&lt;br /&gt;今天，开了一个总结会，在BPM5的测试中，共发现后台逻辑类错误25个，其中没有做单元测试的模块发现了22个错误，做了单元测试却又遗漏的错误有3个。这本来很能说明一些问题。但现实情况是，产品组长对这个数字没有丝毫的反应，在他看来，这个结果正常得不能再正常了。后来他说：“这些问题在第2轮测试中不都就可以验证了吗？”&lt;br /&gt;&lt;br /&gt;如果我们知道他一直在说项目紧张，想快点发布版本，就不难理解我的感受了。一轮回归测试要3-4天，而他的团队完全可以通过自身的努力（借助单元测试）来减少这4天的测试加上修改的返工量。&lt;br /&gt;&lt;br /&gt;大帐不算算小帐的事情太多了。&lt;br /&gt;&lt;br /&gt;我追问，为什么会出现测试遗漏？gang回答说，开发人员说不会出现这样的后台逻辑（指前台界面会进行处理），结果前台没有处理。这时产品组长说：“谁说的，可以出现这种情况”。这难道就是他刚刚说过&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/3897333.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 17 Feb 2009 03:26:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2009/02/16/3897333.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2009/02/16/3897333.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>在推广单元测试过程中发现的雷人问题</title><link>http://blog.csdn.net/xiaosun/archive/2009/02/05/3865117.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/3865117.aspx</wfw:comment><slash:comments>7</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/3865117.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3865117</trackback:ping><description>&lt;br /&gt;豆少喜欢看书，喜欢到什么地步，如果他在看书，你跟他说个什么事，他肯定是没有应答的，你忍住了气，再跟他说一遍，他会抬起头来说：“龙爸爸，你说什么？”，合着我刚才说的那两遍都白说了。&lt;br /&gt;&lt;br /&gt;终于让某人开始动心做单元测试，问题很简单，临近一个功能发布的最后期限，他的程序老是出问题，他急得脸红脖子粗，让某人帮忙去调试他的某个功能，的确，在控制台中，我们看到他在某个函数中第5行打印出的结果是对的，在第20行打印出的结果也是对的。。。只有返回值是错的。&lt;br /&gt;要知道，他需要把程序发布到远程的一台公共的测试服务器上，然后重启服务器，调出页面来调试，那些打印信息是它不断重启测试服务器前加上的，有多少条打印行就表示他重启了多少次服务器。&lt;br /&gt;&lt;br /&gt;我们排查到最后，发现了问题的雷人本质：&lt;br /&gt;&lt;br /&gt;方法的返回值签名是一个ArrayList，于是，他为了编译通过，就在方法体中增加了一行：&lt;br /&gt;return new ArrayList();&lt;br /&gt;&lt;br /&gt;跟豆一样，你在前面说了再多，做了再多，也是白搭。。。&lt;br /&gt;&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/3865117.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 06 Feb 2009 06:04:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2009/02/05/3865117.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2009/02/05/3865117.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>JavaEE下的测试驱动 乱弹</title><link>http://blog.csdn.net/xiaosun/archive/2008/04/01/2241576.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2241576.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2241576.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2241576</trackback:ping><description>关于JavaEE下进行测试驱动的一些只言片语&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2241576.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 02 Apr 2008 04:05:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/04/01/2241576.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/04/01/2241576.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>关于自动化测试的一些思考。</title><link>http://blog.csdn.net/xiaosun/archive/2008/03/20/2200215.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2200215.aspx</wfw:comment><slash:comments>5</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2200215.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2200215</trackback:ping><description>如何在被测试产品、模块中有效引入自动化测试呢？&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2200215.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Mar 2008 00:09:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/03/20/2200215.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/03/20/2200215.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>闻听成都华为的员工跳楼自杀</title><link>http://blog.csdn.net/xiaosun/archive/2008/02/26/2122759.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2122759.aspx</wfw:comment><slash:comments>4</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2122759.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2122759</trackback:ping><description>要坚强，不要放弃。&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2122759.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 27 Feb 2008 01:41:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/02/26/2122759.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/02/26/2122759.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>别了，理想的需求管理</title><link>http://blog.csdn.net/xiaosun/archive/2008/02/26/2122738.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2122738.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2122738.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2122738</trackback:ping><description>面对现实，做敏捷的需求管理。&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2122738.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 27 Feb 2008 01:27:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/02/26/2122738.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/02/26/2122738.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>我爱PPA</title><link>http://blog.csdn.net/xiaosun/archive/2008/02/21/2110987.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2110987.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2110987.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2110987</trackback:ping><description>ppa 是我目前正在完成的一个系统，被列为公司08年重点改进项，尽管第一版的系统已经上线使用了半年左右，但是新的需求仍然不断的涌现，为了让更多的人了解并参与到这个项目中来，我需要对这个系统做一下整体梳理。&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2110987.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 21 Feb 2008 19:58:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/02/21/2110987.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/02/21/2110987.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>领域驱动设计在大规模项目中的应用心得 --发表于《软件世界》08年第1期</title><link>http://blog.csdn.net/xiaosun/archive/2008/02/20/2108773.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/2108773.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/2108773.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2108773</trackback:ping><description>领域驱动设计在大规模项目中的应用实践心得。可作为技术大会ppt讲稿的配合理解材料。&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/2108773.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 20 Feb 2008 19:06:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2008/02/20/2108773.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2008/02/20/2108773.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>infoq中文站 发布《Grails入门指南 》中文版</title><link>http://blog.csdn.net/xiaosun/archive/2007/12/11/1929861.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/1929861.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/1929861.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1929861</trackback:ping><description>infoq中文站发布了《Grails 入门指南》中文版&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/1929861.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 12 Dec 2007 01:36:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2007/12/11/1929861.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2007/12/11/1929861.aspx</guid><dc:creator>豆豆他爹</dc:creator></item><item><title>软件技术大会演讲题目敲定：《领域驱动设计在大规模项目中的应用实践》</title><link>http://blog.csdn.net/xiaosun/archive/2007/11/14/1883549.aspx</link><wfw:comment>http://blog.csdn.net/xiaosun/comments/1883549.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xiaosun/comments/commentRss/1883549.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1883549</trackback:ping><description>已经初步定下中国软件技术大会的演讲题目，提纲整理中&lt;img src =&quot;http://blog.csdn.net/xiaosun/aggbug/1883549.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 14 Nov 2007 16:34:00 +0800</pubDate><author>豆豆他爹</author><comments>http://blog.csdn.net/xiaosun/archive/2007/11/14/1883549.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xiaosun/archive/2007/11/14/1883549.aspx</guid><dc:creator>豆豆他爹</dc:creator></item></channel></rss>