<?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: another reason % of time writing tests is meaningless	</title>
	<atom:link href="https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/</link>
	<description>Java/J2EE Software Development and Technology Discussion Blog</description>
	<lastBuildDate>Sun, 28 Feb 2010 23:33:31 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/comment-page-1/#comment-2248</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sun, 28 Feb 2010 23:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.selikoff.net/?p=1742#comment-2248</guid>

					<description><![CDATA[Scott,
Good analogy on debugging.  Of course since debugging isn&#039;t planned for, it doesn&#039;t get measured or accounted for.

I have seen tremendous value with unit test as a testing/maintenance tool.  Poorly written/tightly coupled ones, not so much.  But good unit tests do help down the road.]]></description>
			<content:encoded><![CDATA[<p>Scott,<br />
Good analogy on debugging.  Of course since debugging isn&#8217;t planned for, it doesn&#8217;t get measured or accounted for.</p>
<p>I have seen tremendous value with unit test as a testing/maintenance tool.  Poorly written/tightly coupled ones, not so much.  But good unit tests do help down the road.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott		</title>
		<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/comment-page-1/#comment-2247</link>

		<dc:creator><![CDATA[Scott]]></dc:creator>
		<pubDate>Sun, 28 Feb 2010 21:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.selikoff.net/?p=1742#comment-2247</guid>

					<description><![CDATA[Unit testing in my experience usually replaces most of the time blocked off for debugging.  IF people actually planned for debugging, which they don&#039;t.  So you replace an activity that&#039;s unplanned, unpredictable, and often frustrating, with one that&#039;s planned, predictable, and constructive.

I believe unit tests are usually overrated as a testing and maintenance tool (the dirty little secret is that often they cost more to maintain than they are worth), but underrated as a development tool (where they are one of the most efficient ways to find and fix initial bugs and design flaws).]]></description>
			<content:encoded><![CDATA[<p>Unit testing in my experience usually replaces most of the time blocked off for debugging.  IF people actually planned for debugging, which they don&#8217;t.  So you replace an activity that&#8217;s unplanned, unpredictable, and often frustrating, with one that&#8217;s planned, predictable, and constructive.</p>
<p>I believe unit tests are usually overrated as a testing and maintenance tool (the dirty little secret is that often they cost more to maintain than they are worth), but underrated as a development tool (where they are one of the most efficient ways to find and fix initial bugs and design flaws).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/comment-page-1/#comment-2245</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sun, 28 Feb 2010 14:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.selikoff.net/?p=1742#comment-2245</guid>

					<description><![CDATA[I disagree.  The cost of maintaining an app over time is more complicated.  Which is why I didn&#039;t include it.  I think that having tests in place minimizes long term costs, but it can&#039;t decrease them to less than zero.]]></description>
			<content:encoded><![CDATA[<p>I disagree.  The cost of maintaining an app over time is more complicated.  Which is why I didn&#8217;t include it.  I think that having tests in place minimizes long term costs, but it can&#8217;t decrease them to less than zero.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ernest		</title>
		<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/comment-page-1/#comment-2243</link>

		<dc:creator><![CDATA[Ernest]]></dc:creator>
		<pubDate>Sun, 28 Feb 2010 03:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.selikoff.net/?p=1742#comment-2243</guid>

					<description><![CDATA[Jeanne,

In your formula, I believe the Y + Y*X represents the real time to complete an application and have it ready for production deployment. The Z factor kicks in after the application goes into production and now it&#039;s in the maintenance mode.

The Z is affected by Y*X; the more time is spent on unit testing (represented Y*X) the less time it takes to troubleshoot and fix the problem (represented by Z).

I believe that relationship is not shown in the formula. 

Regards]]></description>
			<content:encoded><![CDATA[<p>Jeanne,</p>
<p>In your formula, I believe the Y + Y*X represents the real time to complete an application and have it ready for production deployment. The Z factor kicks in after the application goes into production and now it&#8217;s in the maintenance mode.</p>
<p>The Z is affected by Y*X; the more time is spent on unit testing (represented Y*X) the less time it takes to troubleshoot and fix the problem (represented by Z).</p>
<p>I believe that relationship is not shown in the formula. </p>
<p>Regards</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: a response to &#8211; &#8220;What would you say is the average percentage of development time devoted to creating the unit test scripts?&#8221; &#124; Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2010/02/27/another-reason-of-time-writing-tests-is-meaningless/comment-page-1/#comment-2242</link>

		<dc:creator><![CDATA[a response to &#8211; &#8220;What would you say is the average percentage of development time devoted to creating the unit test scripts?&#8221; &#124; Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sat, 27 Feb 2010 22:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.selikoff.net/?p=1742#comment-2242</guid>

					<description><![CDATA[[...] another reason $ of time writing tests is meaningless  [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] another reason $ of time writing tests is meaningless  [&#8230;]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
