<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Unit testing is anti-productive</title>
	<atom:link href="http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/feed" rel="self" type="application/rss+xml" />
	<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610</link>
	<description>Drinker of tea</description>
	<lastBuildDate>Wed, 08 Feb 2012 20:59:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Cthulhu and other crazies » Blog Archive &#187; The ten pros and cons of unit testing</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1450</link>
		<dc:creator>Cthulhu and other crazies » Blog Archive &#187; The ten pros and cons of unit testing</dc:creator>
		<pubDate>Tue, 04 Aug 2009 11:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1450</guid>
		<description>[...] of you may remember mywriting about how unit testing is anti-productive and those of you I have to disapoint, I still dont&#8217; think it&#8217;s the best productivity [...]</description>
		<content:encoded><![CDATA[<p>[...] of you may remember mywriting about how unit testing is anti-productive and those of you I have to disapoint, I still dont&#8217; think it&#8217;s the best productivity [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philippe</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1328</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Fri, 26 Jun 2009 10:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1328</guid>
		<description>Perhaps you just experienced a steep learning curve.

You wrote you were used to practice &quot;reverse TDD&quot;, but how do you test then ? manually ? 
Then it is test-driven, however, it cannot be called TDD.

Do you think you would have achieved more by writing the test last ?</description>
		<content:encoded><![CDATA[<p>Perhaps you just experienced a steep learning curve.</p>
<p>You wrote you were used to practice &#8220;reverse TDD&#8221;, but how do you test then ? manually ?<br />
Then it is test-driven, however, it cannot be called TDD.</p>
<p>Do you think you would have achieved more by writing the test last ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1326</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 24 Jun 2009 17:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1326</guid>
		<description>Your solo coding doesn&#039;t scale.</description>
		<content:encoded><![CDATA[<p>Your solo coding doesn&#8217;t scale.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawel D</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1322</link>
		<dc:creator>Pawel D</dc:creator>
		<pubDate>Wed, 24 Jun 2009 10:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1322</guid>
		<description>Plus it is especially important in languages with dynamic typing. As you never know whether you have just destroyed one of the &quot;old&quot; functionalities implementing &quot;new&quot; one. For simple project though, I would not bother with all that TDD (its not that I would not bother with unit testing at all!); for really complex ones, developed by tens of devs - its a must (at least from my experience).
Additionally it took you considerable amount of time but you should be quicker with writting unit tests as you gain experience (YES - writting good unit tests in short time is a skill!).</description>
		<content:encoded><![CDATA[<p>Plus it is especially important in languages with dynamic typing. As you never know whether you have just destroyed one of the &#8220;old&#8221; functionalities implementing &#8220;new&#8221; one. For simple project though, I would not bother with all that TDD (its not that I would not bother with unit testing at all!); for really complex ones, developed by tens of devs &#8211; its a must (at least from my experience).<br />
Additionally it took you considerable amount of time but you should be quicker with writting unit tests as you gain experience (YES &#8211; writting good unit tests in short time is a skill!).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swizec</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1321</link>
		<dc:creator>swizec</dc:creator>
		<pubDate>Wed, 24 Jun 2009 08:50:52 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1321</guid>
		<description>Yeah I guess you all make a good point. Unit tests aren&#039;t for when you&#039;re coding, they&#039;re for two years later when you&#039;re having problems.

Dunno, maybe I have to get used to them still, but right now they serve mostly to pull me out of the flow and keep jarring me to think about things I don&#039;t feel like thinking about right then. I&#039;m trying to solve a problem, being forced to also solve the problem of testing the solution is just ... overkill.</description>
		<content:encoded><![CDATA[<p>Yeah I guess you all make a good point. Unit tests aren&#8217;t for when you&#8217;re coding, they&#8217;re for two years later when you&#8217;re having problems.</p>
<p>Dunno, maybe I have to get used to them still, but right now they serve mostly to pull me out of the flow and keep jarring me to think about things I don&#8217;t feel like thinking about right then. I&#8217;m trying to solve a problem, being forced to also solve the problem of testing the solution is just &#8230; overkill.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1320</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Wed, 24 Jun 2009 07:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1320</guid>
		<description>Writing tests take time and they slow you down.  But this can be a good thing: while writing tests you&#039;re forced to think not just to code.  The author of &quot;Code Complete&quot; observes that he wouldn&#039;t trust a coder who never just sits thinking rather than coding.</description>
		<content:encoded><![CDATA[<p>Writing tests take time and they slow you down.  But this can be a good thing: while writing tests you&#8217;re forced to think not just to code.  The author of &#8220;Code Complete&#8221; observes that he wouldn&#8217;t trust a coder who never just sits thinking rather than coding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1319</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 24 Jun 2009 06:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1319</guid>
		<description>Thing thing you are missing is when it comes to maintaining code. When something does break and you come along and fix it your unit tests make dammed sure that you fix it properly. You also then create another unit test to capture that issue.

Now im not a fanatical unit tester. I do write them but really only use them for ensuring things will still work later on. That said however they have saved myself from releasing broken code many times.</description>
		<content:encoded><![CDATA[<p>Thing thing you are missing is when it comes to maintaining code. When something does break and you come along and fix it your unit tests make dammed sure that you fix it properly. You also then create another unit test to capture that issue.</p>
<p>Now im not a fanatical unit tester. I do write them but really only use them for ensuring things will still work later on. That said however they have saved myself from releasing broken code many times.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://swizec.com/blog/unit-testing-is-anti-productive/swizec/610/comment-page-1#comment-1317</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Tue, 23 Jun 2009 16:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=610#comment-1317</guid>
		<description>Your title is a bit extreme considering that the time savings for having automated unit tests add up substantially over time for long term code compared to having to manually test your code. 
 Unit testing is actually *very* productive when you look beyond the one time cost of writing a test before you write your code and after that the investment pays off in spades compared to having to repeat manual tests or reason about the code whenever you make a change to a complex or mission critical system. 
 Unit test aren&#039;t recommended for quick throw away scripts that you believe won&#039;t be reused though. Funny thing is a lot of code does end up getting reused again somehow so it&#039;s not an easy call either.</description>
		<content:encoded><![CDATA[<p>Your title is a bit extreme considering that the time savings for having automated unit tests add up substantially over time for long term code compared to having to manually test your code.<br />
 Unit testing is actually *very* productive when you look beyond the one time cost of writing a test before you write your code and after that the investment pays off in spades compared to having to repeat manual tests or reason about the code whenever you make a change to a complex or mission critical system.<br />
 Unit test aren&#8217;t recommended for quick throw away scripts that you believe won&#8217;t be reused though. Funny thing is a lot of code does end up getting reused again somehow so it&#8217;s not an easy call either.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: swizec.com @ 2012-02-08 22:40:25 by W3 Total Cache -->
