<?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: &quot;I don&#8217;t have time to test!&quot;</title>
	<atom:link href="http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/</link>
	<description>Just another LosTechies site</description>
	<lastBuildDate>Wed, 16 Feb 2011 11:54:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Mark</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-109</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 16 Apr 2009 10:33:52 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-109</guid>
		<description>As a new convert to tdd or at least automated testing, one of the main drawbacks was getting the framework and config write, and jumping the first hurdle or tests.

But after you have done it once, even if you don&#039;t do TDD, automated testing is a god send.
</description>
		<content:encoded><![CDATA[<p>As a new convert to tdd or at least automated testing, one of the main drawbacks was getting the framework and config write, and jumping the first hurdle or tests.</p>
<p>But after you have done it once, even if you don&#8217;t do TDD, automated testing is a god send.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giorgio Sironi</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-108</link>
		<dc:creator>Giorgio Sironi</dc:creator>
		<pubDate>Thu, 16 Apr 2009 09:39:44 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-108</guid>
		<description>Cannot agree more, small tests for domain layer code are saving my life...</description>
		<content:encoded><![CDATA[<p>Cannot agree more, small tests for domain layer code are saving my life&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shantanu</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-107</link>
		<dc:creator>Shantanu</dc:creator>
		<pubDate>Thu, 16 Apr 2009 04:44:28 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-107</guid>
		<description>As Neal Ford says, testing is only a by product of TDD. The main intention of TDD is to get your design right even before you write code.

http://www.sda-india.com/conferences/2009/JAX-INDIA/slides/Neal_Ford/slides.pdf?</description>
		<content:encoded><![CDATA[<p>As Neal Ford says, testing is only a by product of TDD. The main intention of TDD is to get your design right even before you write code.</p>
<p><a href="http://www.sda-india.com/conferences/2009/JAX-INDIA/slides/Neal_Ford/slides.pdf" rel="nofollow">http://www.sda-india.com/conferences/2009/JAX-INDIA/slides/Neal_Ford/slides.pdf</a>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jlockwood</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-106</link>
		<dc:creator>jlockwood</dc:creator>
		<pubDate>Wed, 15 Apr 2009 22:15:32 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-106</guid>
		<description>@Jarod Awesome reference!</description>
		<content:encoded><![CDATA[<p>@Jarod Awesome reference!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jlockwood</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-105</link>
		<dc:creator>jlockwood</dc:creator>
		<pubDate>Tue, 14 Apr 2009 22:06:52 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-105</guid>
		<description>@Chris

I said &quot;complex code at the least&quot; because if I&#039;m truly pressed for time I have to prioritize where I spend the most testing effort.  I&#039;m currently working on a big legacy system and could probably do nothing but write tests for 2 years and not have the coverage I&#039;d like.  With this system, I tend to test the most breakable and complex pieces first (mainly so that I&#039;m in a position to safely refactor...I&#039;ll want to simplify that code ASAP).  Testing POJOs, simple DAOs and whatnot is way lower on my priority list.

I tend to use TDD for new code, so it&#039;s not an issue in that respect. </description>
		<content:encoded><![CDATA[<p>@Chris</p>
<p>I said &#8220;complex code at the least&#8221; because if I&#8217;m truly pressed for time I have to prioritize where I spend the most testing effort.  I&#8217;m currently working on a big legacy system and could probably do nothing but write tests for 2 years and not have the coverage I&#8217;d like.  With this system, I tend to test the most breakable and complex pieces first (mainly so that I&#8217;m in a position to safely refactor&#8230;I&#8217;ll want to simplify that code ASAP).  Testing POJOs, simple DAOs and whatnot is way lower on my priority list.</p>
<p>I tend to use TDD for new code, so it&#8217;s not an issue in that respect. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jlockwood</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-104</link>
		<dc:creator>jlockwood</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:58:35 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-104</guid>
		<description>@Dan

The key is to commit to &#039;wasting&#039; a little time testing each day (commit is the key word here).  As time progresses you will become more comfortable and proficient at testing.  Start with simple tests using an easy-to-use test framework like NUnit.  Grab a tutorial for the framework and write tests based on what you learn.  Overtime you&#039;ll learn how to get more complex code under test.

I&#039;d say the key is not to get overwhelmed (if you are working on a large legacy system) and learn as you go along.  If I had junit when I first started programming I&#039;m pretty sure I would have been &#039;test infected&#039; within my first year.  The tools available these days are really nice.

What are you doing now Dan?
</description>
		<content:encoded><![CDATA[<p>@Dan</p>
<p>The key is to commit to &#8216;wasting&#8217; a little time testing each day (commit is the key word here).  As time progresses you will become more comfortable and proficient at testing.  Start with simple tests using an easy-to-use test framework like NUnit.  Grab a tutorial for the framework and write tests based on what you learn.  Overtime you&#8217;ll learn how to get more complex code under test.</p>
<p>I&#8217;d say the key is not to get overwhelmed (if you are working on a large legacy system) and learn as you go along.  If I had junit when I first started programming I&#8217;m pretty sure I would have been &#8216;test infected&#8217; within my first year.  The tools available these days are really nice.</p>
<p>What are you doing now Dan?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Missal</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-103</link>
		<dc:creator>Chris Missal</dc:creator>
		<pubDate>Tue, 14 Apr 2009 20:54:49 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-103</guid>
		<description>I like to respond to that with:

&quot;You&#039;re already testing with the debugger, TestPage1.aspx, or whatever... Just save that code and automate it!&quot;

Also, I&#039;m going to disagree when you say &quot;(the complex code at the least)&quot;. I find that even very simple code can benefit from tests. Small code can sometimes cause big problems when overlooked.</description>
		<content:encoded><![CDATA[<p>I like to respond to that with:</p>
<p>&#8220;You&#8217;re already testing with the debugger, TestPage1.aspx, or whatever&#8230; Just save that code and automate it!&#8221;</p>
<p>Also, I&#8217;m going to disagree when you say &#8220;(the complex code at the least)&#8221;. I find that even very simple code can benefit from tests. Small code can sometimes cause big problems when overlooked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jarod</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-102</link>
		<dc:creator>Jarod</dc:creator>
		<pubDate>Tue, 14 Apr 2009 15:53:19 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-102</guid>
		<description>as Beck would say: the &quot;No time for testing&quot; death spiral.

&quot;The more stress you feel, the less testing you do. The less testing you do, the more errors you will make. The more errors you make, the more stress you feel.

Rinse and repeat&quot;


http://books.google.com/books?id=gFgnde_vwMAC&amp;pg=PA124&amp;lpg=PA124&amp;dq=%22no+time+for+testing+death+spiral%22&amp;source=bl&amp;ots=enGxrqVnuK&amp;sig=jeFZ-rAgyVWbvdGPgXJDJvWQR-E&amp;hl=en&amp;ei=QrDkSYOpKJ6EtAODs6S9CQ&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=1#PPA124,M1</description>
		<content:encoded><![CDATA[<p>as Beck would say: the &#8220;No time for testing&#8221; death spiral.</p>
<p>&#8220;The more stress you feel, the less testing you do. The less testing you do, the more errors you will make. The more errors you make, the more stress you feel.</p>
<p>Rinse and repeat&#8221;</p>
<p><a href="http://books.google.com/books?id=gFgnde_vwMAC&#038;pg=PA124&#038;lpg=PA124&#038;dq=%22no+time+for+testing+death+spiral%22&#038;source=bl&#038;ots=enGxrqVnuK&#038;sig=jeFZ-rAgyVWbvdGPgXJDJvWQR-E&#038;hl=en&#038;ei=QrDkSYOpKJ6EtAODs6S9CQ&#038;sa=X&#038;oi=book_result&#038;ct=result&#038;resnum=1#PPA124,M1" rel="nofollow">http://books.google.com/books?id=gFgnde_vwMAC&#038;pg=PA124&#038;lpg=PA124&#038;dq=%22no+time+for+testing+death+spiral%22&#038;source=bl&#038;ots=enGxrqVnuK&#038;sig=jeFZ-rAgyVWbvdGPgXJDJvWQR-E&#038;hl=en&#038;ei=QrDkSYOpKJ6EtAODs6S9CQ&#038;sa=X&#038;oi=book_result&#038;ct=result&#038;resnum=1#PPA124,M1</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-101</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 14 Apr 2009 14:30:51 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-101</guid>
		<description>I&#039;ve not got time to read all that!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve not got time to read all that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Meridth</title>
		<link>http://lostechies.com/joshualockwood/2009/04/13/quot-i-don-t-have-time-to-test-quot/#comment-100</link>
		<dc:creator>Jason Meridth</dc:creator>
		<pubDate>Tue, 14 Apr 2009 14:21:36 +0000</pubDate>
		<guid isPermaLink="false">/blogs/joshua_lockwood/archive/2009/04/13/quot-i-don-t-have-time-to-test-quot.aspx#comment-100</guid>
		<description>Here, here.</description>
		<content:encoded><![CDATA[<p>Here, here.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
