<?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: Test-Driving Stored Procedures in SQL Server in VS2008</title>
	<atom:link href="http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/</link>
	<description>Agile Coaching, Ruby, .NET, Debugging, why not?</description>
	<lastBuildDate>Fri, 03 Sep 2010 01:46:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Susan</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-780</link>
		<dc:creator>Susan</dc:creator>
		<pubDate>Sat, 25 Jul 2009 14:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-780</guid>
		<description>I recently came across your blog and have been reading along. I thought I would leave my first comment. I don&#039;t know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.

Susan

http://8080proxy.com</description>
		<content:encoded><![CDATA[<p>I recently came across your blog and have been reading along. I thought I would leave my first comment. I don&#8217;t know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.</p>
<p>Susan</p>
<p><a href="http://8080proxy.com" rel="nofollow">http://8080proxy.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin C. Nagel</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-128</link>
		<dc:creator>Martin C. Nagel</dc:creator>
		<pubDate>Wed, 22 Apr 2009 18:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-128</guid>
		<description>Be aware that the pre-test, test, and post-test scripts run in different database connections.  As a result, one of the techniques for TDD teardown (leaving the database *exactly* as it was prior to the test)--using a BEGIN TRANSACTION in pre-test, and the ROLLBACK TRANSACTION in the post-test, won&#039;t work.  Instead, you have to use the special .NET code to use transactions like that, or you have to do begin tran, setup, test, and rollback all in the &quot;test&quot; script.&lt;br /&gt;~ Martin C. Nagel, developer, Intel Corporation</description>
		<content:encoded><![CDATA[<p>Be aware that the pre-test, test, and post-test scripts run in different database connections.  As a result, one of the techniques for TDD teardown (leaving the database *exactly* as it was prior to the test)&#8211;using a BEGIN TRANSACTION in pre-test, and the ROLLBACK TRANSACTION in the post-test, won&#8217;t work.  Instead, you have to use the special .NET code to use transactions like that, or you have to do begin tran, setup, test, and rollback all in the &#8220;test&#8221; script.<br />~ Martin C. Nagel, developer, Intel Corporation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-129</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 15 Apr 2009 23:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-129</guid>
		<description>I am glad to share one database unit testing tool. It is named as AnyDbTest (&lt;a href=&quot;http://www.anydbtest.com&quot; rel=&quot;nofollow&quot;&gt;www.anydbtest.com&lt;/a&gt;). AnyDbTest Express edition is free of charge&lt;br /&gt;&lt;br /&gt;I know some guys are using DbUnit or other xUnit test framework to perform DB unit testing. I also tried to use them in my projects, but at last I have to give up these tools because I don’t to like write too much code to compare two large record sets. &lt;br /&gt;&lt;br /&gt;AnyDbTest is declarative style testing tool. You need not to program at all. What we do is to express what we want to test, rather than how to test. We only need to configure an Xml test file to tell AnyDbTest what we want to test.  Rather than painstakingly writing test code for xUnit-like test framework. So AnyDbTest is the right choice for DBA or DB developers.   &lt;br /&gt;&lt;br /&gt;AnyDbTest also offers a visual dashboard. Success or failure of test is automatically computed and presented to us via an easy-to-understand red/green light display.  &lt;br /&gt; &lt;br /&gt;Features specific to AnyDbTest: &lt;br /&gt;*Writing test case with Xml, rather than Java/C++/C#/VB test case code. &lt;br /&gt;*Many kinds of assertion supported, such as StrictEqual, SetEqual, IsSupersetOf, Overlaps, and RecordCountEqual etc.&lt;br /&gt;*Allows using Excel spreadsheet/Xml as the source of the data for the tests.&lt;br /&gt;*Supports Sandbox test model, if test will be done in sandbox, all database operations will be rolled back meaning any changes will be undone.&lt;br /&gt;*Unique cross-different-type-database testing, which means target and reference result set can come from two databases, even one is SQL Server, another is Oracle.</description>
		<content:encoded><![CDATA[<p>I am glad to share one database unit testing tool. It is named as AnyDbTest (<a href="http://www.anydbtest.com" rel="nofollow">http://www.anydbtest.com</a>). AnyDbTest Express edition is free of charge</p>
<p>I know some guys are using DbUnit or other xUnit test framework to perform DB unit testing. I also tried to use them in my projects, but at last I have to give up these tools because I don’t to like write too much code to compare two large record sets. </p>
<p>AnyDbTest is declarative style testing tool. You need not to program at all. What we do is to express what we want to test, rather than how to test. We only need to configure an Xml test file to tell AnyDbTest what we want to test.  Rather than painstakingly writing test code for xUnit-like test framework. So AnyDbTest is the right choice for DBA or DB developers.   </p>
<p>AnyDbTest also offers a visual dashboard. Success or failure of test is automatically computed and presented to us via an easy-to-understand red/green light display.  </p>
<p>Features specific to AnyDbTest: <br />*Writing test case with Xml, rather than Java/C++/C#/VB test case code. <br />*Many kinds of assertion supported, such as StrictEqual, SetEqual, IsSupersetOf, Overlaps, and RecordCountEqual etc.<br />*Allows using Excel spreadsheet/Xml as the source of the data for the tests.<br />*Supports Sandbox test model, if test will be done in sandbox, all database operations will be rolled back meaning any changes will be undone.<br />*Unique cross-different-type-database testing, which means target and reference result set can come from two databases, even one is SQL Server, another is Oracle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laksiri Sampath</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-130</link>
		<dc:creator>Laksiri Sampath</dc:creator>
		<pubDate>Wed, 22 Oct 2008 06:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-130</guid>
		<description>thanks for valuable post for testing with ex :)&lt;br /&gt;&lt;br /&gt;http://lakgraphics.blogspot.com/</description>
		<content:encoded><![CDATA[<p>thanks for valuable post for testing with ex :)</p>
<p><a href="http://lakgraphics.blogspot.com/" rel="nofollow">http://lakgraphics.blogspot.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raby Whyte</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-131</link>
		<dc:creator>Raby Whyte</dc:creator>
		<pubDate>Thu, 17 Apr 2008 07:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-131</guid>
		<description>Great post Cory, well written and useful</description>
		<content:encoded><![CDATA[<p>Great post Cory, well written and useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-132</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 28 Feb 2008 07:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-132</guid>
		<description>really nice article. I followed steps and got what exactly i was looking for. I wll be now on look out for more such stuff from you. &lt;br /&gt;&lt;br /&gt;Keep blogging.....&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Sumit</description>
		<content:encoded><![CDATA[<p>really nice article. I followed steps and got what exactly i was looking for. I wll be now on look out for more such stuff from you. </p>
<p>Keep blogging&#8230;..</p>
<p>Thanks<br />Sumit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Evans</title>
		<link>http://blog.coryfoy.com/2007/07/test-driving-stored-procedures-in-sql-server-in-vs2008/comment-page-1/#comment-133</link>
		<dc:creator>Martin Evans</dc:creator>
		<pubDate>Wed, 21 Nov 2007 12:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=135#comment-133</guid>
		<description>I read this article while waiting for VS2008 to load and it was just what I was looking for. &lt;br /&gt;&lt;br /&gt;Many thanks for that Cory.</description>
		<content:encoded><![CDATA[<p>I read this article while waiting for VS2008 to load and it was just what I was looking for. </p>
<p>Many thanks for that Cory.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
