<?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: Getting with it: Test-Driven Development</title>
	<atom:link href="http://jagregory.com/writings/getting-with-it-test-driven-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://jagregory.com/writings/getting-with-it-test-driven-development/</link>
	<description>Monkeying with the code</description>
	<lastBuildDate>Fri, 26 Feb 2010 20:38:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: James Gregory</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-148</link>
		<dc:creator>James Gregory</dc:creator>
		<pubDate>Sun, 22 Jul 2007 17:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-148</guid>
		<description>hefebia: Not made it that far yet.</description>
		<content:encoded><![CDATA[<p>hefebia: Not made it that far yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hefebia</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-147</link>
		<dc:creator>hefebia</dc:creator>
		<pubDate>Sun, 22 Jul 2007 16:47:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-147</guid>
		<description>One question: How did you convince your boss of the usefulness of TDD?</description>
		<content:encoded><![CDATA[<p>One question: How did you convince your boss of the usefulness of TDD?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FTorres</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-131</link>
		<dc:creator>FTorres</dc:creator>
		<pubDate>Sun, 22 Jul 2007 03:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-131</guid>
		<description>My personal path to TDD lead me to write this Experimental test framework www.quickunit.net.

Which is a kind of a minimalists approach to test driven development.

Feedback welcome.</description>
		<content:encoded><![CDATA[<p>My personal path to TDD lead me to write this Experimental test framework <a href="http://www.quickunit.net" rel="nofollow">http://www.quickunit.net</a>.</p>
<p>Which is a kind of a minimalists approach to test driven development.</p>
<p>Feedback welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Test-drive properly, test fully &#8212; James Gregory</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-118</link>
		<dc:creator>Test-drive properly, test fully &#8212; James Gregory</dc:creator>
		<pubDate>Sat, 21 Jul 2007 09:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-118</guid>
		<description>[...] Clarkson left me a link in a comment to one of his posts that ties in quite nicely to my recent Getting with it: Test Driven Development [...]</description>
		<content:encoded><![CDATA[<p>[...] Clarkson left me a link in a comment to one of his posts that ties in quite nicely to my recent Getting with it: Test Driven Development [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricky Clarkson</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-117</link>
		<dc:creator>Ricky Clarkson</dc:creator>
		<pubDate>Sat, 21 Jul 2007 01:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-117</guid>
		<description>What is the advantage of providing a naive implementation that only passes those cases that the tests test for, rather than leaving it failing until you can provide a &#039;nice&#039; implementation?

My opinion on TDD is covered here:  http://rickyclarkson.blogspot.com/2007/05/you-dont-need-tdd-you-need-repl.html</description>
		<content:encoded><![CDATA[<p>What is the advantage of providing a naive implementation that only passes those cases that the tests test for, rather than leaving it failing until you can provide a &#8216;nice&#8217; implementation?</p>
<p>My opinion on TDD is covered here:  <a href="http://rickyclarkson.blogspot.com/2007/05/you-dont-need-tdd-you-need-repl.html" rel="nofollow">http://rickyclarkson.blogspot.com/2007/05/you-dont-need-tdd-you-need-repl.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Gregory</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-115</link>
		<dc:creator>James Gregory</dc:creator>
		<pubDate>Fri, 20 Jul 2007 18:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-115</guid>
		<description>Ryan: The mental leap was a big stumbling block for me too, it&#039;s easy once you get past it.

Ideally you should look into using MVC or MVP to help separate your code into manageable chunks. That&#039;s a good place to start. With the logic separated from the presentation, things should be much easier to test.

http://www.martinfowler.com/eaaDev/uiArchs.html - MVP
http://codebetter.com/blogs/jeremy.miller/archive/2006/02/01/137457.aspx Test Driven Development with ASP.Net and MVP

This is something I&#039;d like to write about in the future.</description>
		<content:encoded><![CDATA[<p>Ryan: The mental leap was a big stumbling block for me too, it&#8217;s easy once you get past it.</p>
<p>Ideally you should look into using MVC or MVP to help separate your code into manageable chunks. That&#8217;s a good place to start. With the logic separated from the presentation, things should be much easier to test.</p>
<p><a href="http://www.martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">http://www.martinfowler.com/eaaDev/uiArchs.html</a> &#8211; MVP<br />
<a href="http://codebetter.com/blogs/jeremy.miller/archive/2006/02/01/137457.aspx" rel="nofollow">http://codebetter.com/blogs/jeremy.miller/archive/2006/02/01/137457.aspx</a> Test Driven Development with ASP.Net and MVP</p>
<p>This is something I&#8217;d like to write about in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Smith</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-114</link>
		<dc:creator>Ryan Smith</dc:creator>
		<pubDate>Fri, 20 Jul 2007 16:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-114</guid>
		<description>James,

Very nice post.  I&#039;ve been trying to get into test driven development, but I&#039;ve been having a hard time finding a jumping off point.

I guess I just need to make the mental leap and get it going.  I think this post is pointing me in the right direction.

The issue I have is most of my stuff is database driven for the web, and I&#039;m not really sure about the best way to approach testing it.  Any ideas of good articles on this subject?

Thanks,
Ryan.</description>
		<content:encoded><![CDATA[<p>James,</p>
<p>Very nice post.  I&#8217;ve been trying to get into test driven development, but I&#8217;ve been having a hard time finding a jumping off point.</p>
<p>I guess I just need to make the mental leap and get it going.  I think this post is pointing me in the right direction.</p>
<p>The issue I have is most of my stuff is database driven for the web, and I&#8217;m not really sure about the best way to approach testing it.  Any ideas of good articles on this subject?</p>
<p>Thanks,<br />
Ryan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Gregory</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-110</link>
		<dc:creator>James Gregory</dc:creator>
		<pubDate>Fri, 20 Jul 2007 14:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-110</guid>
		<description>Mike: Great point, never really thought of it that way, but you&#039;re certainly right.

Mr Cheese: That did occur to me while writing this, but I felt the examples were adequate because the focus was on how to test and not how to write a decent inventory system. Point taken though, more realistic examples needed.</description>
		<content:encoded><![CDATA[<p>Mike: Great point, never really thought of it that way, but you&#8217;re certainly right.</p>
<p>Mr Cheese: That did occur to me while writing this, but I felt the examples were adequate because the focus was on how to test and not how to write a decent inventory system. Point taken though, more realistic examples needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr Cheese</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-109</link>
		<dc:creator>Mr Cheese</dc:creator>
		<pubDate>Fri, 20 Jul 2007 14:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-109</guid>
		<description>Nice idea, but the example is too contrived :(

I was hoping for a practical example.

All you&#039;ve done is re-type their entire inventory by hand into a test.

What if the price of Apples changes? Do they need to recompile their entire stock control system?</description>
		<content:encoded><![CDATA[<p>Nice idea, but the example is too contrived <img src='http://jagregory.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I was hoping for a practical example.</p>
<p>All you&#8217;ve done is re-type their entire inventory by hand into a test.</p>
<p>What if the price of Apples changes? Do they need to recompile their entire stock control system?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Duncan</title>
		<link>http://jagregory.com/writings/getting-with-it-test-driven-development/comment-page-1/#comment-107</link>
		<dc:creator>Mike Duncan</dc:creator>
		<pubDate>Fri, 20 Jul 2007 14:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jagregory.com/2007/07/17/getting-with-it-test-driven-development/#comment-107</guid>
		<description>Sorry, meant Great post JAMES.</description>
		<content:encoded><![CDATA[<p>Sorry, meant Great post JAMES.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
