<?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: Extending Test Frameworks</title>
	<atom:link href="http://www.elilopian.com/2007/06/07/extending-test-frameworks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/</link>
	<description>Creating better software</description>
	<lastBuildDate>Fri, 20 Aug 2010 20:27:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eli Lopian</title>
		<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/comment-page-1/#comment-2286</link>
		<dc:creator>Eli Lopian</dc:creator>
		<pubDate>Sun, 10 Jun 2007 07:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.elilopian.com/2007/06/07/extending-test-frameworks/#comment-2286</guid>
		<description>Jonas,
You are correct, &#039;using&#039; would be a better choice.
I have fixed the post</description>
		<content:encoded><![CDATA[<p>Jonas,<br />
You are correct, &#8216;using&#8217; would be a better choice.<br />
I have fixed the post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/comment-page-1/#comment-2274</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Sun, 10 Jun 2007 03:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.elilopian.com/2007/06/07/extending-test-frameworks/#comment-2274</guid>
		<description>Quick question.

Why did you write the code with an explicit try finally instead of a using statement?

TransactionScope scope =
           new TransactionScope(TransactionScopeOption.RequiresNew);
        try
        {
            // run the test 
            return base.CallDecoratedMethod();
        }
        finally
        {
            scope.Dispose();
        }



using( new TransactionScope(TransactionScopeOption.RequiresNew) )
{
   // run the test 
   return base.CallDecoratedMethod();
}</description>
		<content:encoded><![CDATA[<p>Quick question.</p>
<p>Why did you write the code with an explicit try finally instead of a using statement?</p>
<p>TransactionScope scope =<br />
           new TransactionScope(TransactionScopeOption.RequiresNew);<br />
        try<br />
        {<br />
            // run the test<br />
            return base.CallDecoratedMethod();<br />
        }<br />
        finally<br />
        {<br />
            scope.Dispose();<br />
        }</p>
<p>using( new TransactionScope(TransactionScopeOption.RequiresNew) )<br />
{<br />
   // run the test<br />
   return base.CallDecoratedMethod();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli Lopian</title>
		<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/comment-page-1/#comment-2261</link>
		<dc:creator>Eli Lopian</dc:creator>
		<pubDate>Sat, 09 Jun 2007 19:59:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.elilopian.com/2007/06/07/extending-test-frameworks/#comment-2261</guid>
		<description>Colin, Works like a charm with VSTS data driven tests.</description>
		<content:encoded><![CDATA[<p>Colin, Works like a charm with VSTS data driven tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli Lopian</title>
		<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/comment-page-1/#comment-2225</link>
		<dc:creator>Eli Lopian</dc:creator>
		<pubDate>Fri, 08 Jun 2007 12:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.elilopian.com/2007/06/07/extending-test-frameworks/#comment-2225</guid>
		<description>Colin,
It should work but I have never tried it. 
I know that it doesn&#039;t work (yet) for ASP tests.</description>
		<content:encoded><![CDATA[<p>Colin,<br />
It should work but I have never tried it.<br />
I know that it doesn&#8217;t work (yet) for ASP tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Nash</title>
		<link>http://www.elilopian.com/2007/06/07/extending-test-frameworks/comment-page-1/#comment-2223</link>
		<dc:creator>Colin Nash</dc:creator>
		<pubDate>Fri, 08 Jun 2007 09:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.elilopian.com/2007/06/07/extending-test-frameworks/#comment-2223</guid>
		<description>This looks really useful. I noticed you are calling the test using base.CallDecoratedMethod()and was wondering if this in compatible with VSTS data driven tests?</description>
		<content:encoded><![CDATA[<p>This looks really useful. I noticed you are calling the test using base.CallDecoratedMethod()and was wondering if this in compatible with VSTS data driven tests?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
