<?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: What Is the Main Benefit of Writing Test Cases?</title>
	<atom:link href="http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html</link>
	<description>Dealing with software projects in real life</description>
	<lastBuildDate>Tue, 16 Mar 2010 08:56:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Laurent</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2305</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Wed, 03 Jun 2009 13:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2305</guid>
		<description>To Paul and Pawel,&lt;br /&gt;&lt;br /&gt;Those tests case should be automated.&lt;br /&gt;&lt;br /&gt;Then, it doesn&#039;t matter how many of them they are.&lt;br /&gt;&lt;br /&gt;So, you will still be confident that the new build doesn&#039;t break a previously fixed bug.  This also gives increase the developer&#039;s confidence, since he knows that if he make a mistake, there are good chances it will be catch by those regression tests.</description>
		<content:encoded><![CDATA[<p>To Paul and Pawel,</p>
<p>Those tests case should be automated.</p>
<p>Then, it doesn&#39;t matter how many of them they are.</p>
<p>So, you will still be confident that the new build doesn&#39;t break a previously fixed bug.  This also gives increase the developer&#39;s confidence, since he knows that if he make a mistake, there are good chances it will be catch by those regression tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawel Brodzinski</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2304</link>
		<dc:creator>Pawel Brodzinski</dc:creator>
		<pubDate>Thu, 14 May 2009 17:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2304</guid>
		<description>Paul,&lt;br /&gt;&lt;br /&gt;Yes, but... Actually one of problems with test cases is that you can hardly keep them up-to-date. If you&#039;d like to generat test case from each bug you find you&#039;ll be soon overwhelmed with a number of test cases.</description>
		<content:encoded><![CDATA[<p>Paul,</p>
<p>Yes, but&#8230; Actually one of problems with test cases is that you can hardly keep them up-to-date. If you&#8217;d like to generat test case from each bug you find you&#8217;ll be soon overwhelmed with a number of test cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawel Brodzinski</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2303</link>
		<dc:creator>Pawel Brodzinski</dc:creator>
		<pubDate>Thu, 14 May 2009 17:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2303</guid>
		<description>Steve,&lt;br /&gt;&lt;br /&gt;For me the second poing you bring is especially important. That&#039;s exactly looking at the application via user eyes. And you look at the whole flow, not just one particular function.</description>
		<content:encoded><![CDATA[<p>Steve,</p>
<p>For me the second poing you bring is especially important. That&#8217;s exactly looking at the application via user eyes. And you look at the whole flow, not just one particular function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Marculescu</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2302</link>
		<dc:creator>Paul Marculescu</dc:creator>
		<pubDate>Thu, 14 May 2009 13:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2302</guid>
		<description>Test cases are a prerequisite for regression testing. &lt;br /&gt;&lt;br /&gt;Let&#039;s take an example. &lt;br /&gt;You test the signup page in your web application and notice that even if you don&#039;t enable the checkbox &quot;I agree with the terms and conditions&quot; you still get your account created.&lt;br /&gt; &lt;br /&gt;You mark it as a bug and write down how to reproduce it - that&#039;s a test case. On the next build, you go through the test cases you wrote and check if they pass.&lt;br /&gt;&lt;br /&gt;I see no other way of being able to do this regression testing, unless you write down these test cases.</description>
		<content:encoded><![CDATA[<p>Test cases are a prerequisite for regression testing. </p>
<p>Let&#8217;s take an example. <br />You test the signup page in your web application and notice that even if you don&#8217;t enable the checkbox &#8220;I agree with the terms and conditions&#8221; you still get your account created.</p>
<p>You mark it as a bug and write down how to reproduce it &#8211; that&#8217;s a test case. On the next build, you go through the test cases you wrote and check if they pass.</p>
<p>I see no other way of being able to do this regression testing, unless you write down these test cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2301</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Thu, 14 May 2009 12:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2301</guid>
		<description>Writing Test cases has some benefits.&lt;br /&gt;&lt;br /&gt;1. Delivery to offshore testers, particularly if development is onsite&lt;br /&gt;&lt;br /&gt;2. Test Design, it helps you design how you will test the product, much like a developer who is designing how he or she will program the software&lt;br /&gt;&lt;br /&gt;3. Repeatible process, particularly useful if bringing in a new tester</description>
		<content:encoded><![CDATA[<p>Writing Test cases has some benefits.</p>
<p>1. Delivery to offshore testers, particularly if development is onsite</p>
<p>2. Test Design, it helps you design how you will test the product, much like a developer who is designing how he or she will program the software</p>
<p>3. Repeatible process, particularly useful if bringing in a new tester</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnfmoore</title>
		<link>http://blog.brodzinski.com/2009/05/what-is-main-benefit-of-writing-test.html/comment-page-1#comment-2300</link>
		<dc:creator>johnfmoore</dc:creator>
		<pubDate>Wed, 13 May 2009 20:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brodzinski.com/2009/05/what-is-the-main-benefit-of-writing-test-cases.html#comment-2300</guid>
		<description>Pawel,&lt;br /&gt;&lt;br /&gt;Good post, I agree.  QA Test plans derive most of their value from the initial writing, the thought processes that go into that writing, and the first iterations through the code while writing the test cases.&lt;br /&gt;&lt;br /&gt;Blindly running through older test cases is one of the main causes I have seen for missing obvious product bugs as people who blindly follow the test plans often put aside the creative aspects of testing.&lt;br /&gt;&lt;br /&gt;John</description>
		<content:encoded><![CDATA[<p>Pawel,</p>
<p>Good post, I agree.  QA Test plans derive most of their value from the initial writing, the thought processes that go into that writing, and the first iterations through the code while writing the test cases.</p>
<p>Blindly running through older test cases is one of the main causes I have seen for missing obvious product bugs as people who blindly follow the test plans often put aside the creative aspects of testing.</p>
<p>John</p>
]]></content:encoded>
	</item>
</channel>
</rss>
