<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: .NET Test-Driven Development</title>
	<atom:link href="http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/</link>
	<description>random posts on code, .NET, Umbraco and WordPress</description>
	<lastBuildDate>Sun, 07 Mar 2010 03:12:16 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Scott</title>
		<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/#comment-114</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 25 Sep 2008 23:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://leekelleher.wordpress.com/?p=47#comment-114</guid>
		<description>Create a new C# class library project. Then create a public class and mark it up with attribute [TestFixture]
Create a public void method next and mark that up with the attribute [Test]. If you compile this and then right click your project and click &quot;Test with Nunit&quot; you should get a new Gui with your test in it. Now it&#039;s time to learn about asserts. It&#039;s all awesomeness from here on!</description>
		<content:encoded><![CDATA[<p>Create a new C# class library project. Then create a public class and mark it up with attribute [TestFixture]<br />
Create a public void method next and mark that up with the attribute [Test]. If you compile this and then right click your project and click &#8220;Test with Nunit&#8221; you should get a new Gui with your test in it. Now it&#8217;s time to learn about asserts. It&#8217;s all awesomeness from here on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ross</title>
		<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/#comment-90</link>
		<dc:creator>Ross</dc:creator>
		<pubDate>Wed, 02 Jul 2008 13:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://leekelleher.wordpress.com/?p=47#comment-90</guid>
		<description>Go with NUnit, it is simple and works, and, well, I&#039;ve never seen xUnit :)  If you are using Team Server I believe Unit Testing is built right in.

I would doubt that xUnit has that many differences in approach from NUnit.

But be careful, all code has bugs, and adding more code through testing means potentially more bugs (in the tests) :)</description>
		<content:encoded><![CDATA[<p>Go with NUnit, it is simple and works, and, well, I&#8217;ve never seen xUnit <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   If you are using Team Server I believe Unit Testing is built right in.</p>
<p>I would doubt that xUnit has that many differences in approach from NUnit.</p>
<p>But be careful, all code has bugs, and adding more code through testing means potentially more bugs (in the tests) <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee Kelleher</title>
		<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/#comment-89</link>
		<dc:creator>Lee Kelleher</dc:creator>
		<pubDate>Wed, 02 Jul 2008 11:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://leekelleher.wordpress.com/?p=47#comment-89</guid>
		<description>@Ross, have you looked at xUnit?

I keep hearing that it&#039;s the &quot;next NUnit&quot;, yada yada.  Since I know nothing about using NUnit, should I skip on to xUnit? or go back to basics? (so I&#039;d have an underlying knowledge)

There&#039;s obviously a lot more community support for NUnit:
http://www.google.com/trends?q=nUnit%2C+xUnit</description>
		<content:encoded><![CDATA[<p>@Ross, have you looked at xUnit?</p>
<p>I keep hearing that it&#8217;s the &#8220;next NUnit&#8221;, yada yada.  Since I know nothing about using NUnit, should I skip on to xUnit? or go back to basics? (so I&#8217;d have an underlying knowledge)</p>
<p>There&#8217;s obviously a lot more community support for NUnit:<br />
<a href="http://www.google.com/trends?q=nUnit%2C+xUnit" rel="nofollow">http://www.google.com/trends?q=nUnit%2C+xUnit</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ross</title>
		<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/#comment-88</link>
		<dc:creator>Ross</dc:creator>
		<pubDate>Wed, 02 Jul 2008 08:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://leekelleher.wordpress.com/?p=47#comment-88</guid>
		<description>I&#039;ve used NUnit quite a lot in the past, but don&#039;t know if the way that I used it would be called TDD.

Basically I create a package (folder) called tests in each assembly and then create a set of tests for each component in the system.  Then I write stubs for the code and complete the tests - at this point everything will fail because it returns null, or throws an ArgumentException.  Then I just fix the code until all of the tests pass :)

Writing NUnit Text Fixtures is pretty easy, just a matter of using Nunit.Framework, adding a few attributes to some methods and then &quot;Bob est ton Oncle&quot;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used NUnit quite a lot in the past, but don&#8217;t know if the way that I used it would be called TDD.</p>
<p>Basically I create a package (folder) called tests in each assembly and then create a set of tests for each component in the system.  Then I write stubs for the code and complete the tests &#8211; at this point everything will fail because it returns null, or throws an ArgumentException.  Then I just fix the code until all of the tests pass <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Writing NUnit Text Fixtures is pretty easy, just a matter of using Nunit.Framework, adding a few attributes to some methods and then &#8220;Bob est ton Oncle&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee Kelleher</title>
		<link>http://blog.leekelleher.com/2008/07/02/test-driven-development-dotnet/#comment-87</link>
		<dc:creator>Lee Kelleher</dc:creator>
		<pubDate>Wed, 02 Jul 2008 01:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://leekelleher.wordpress.com/?p=47#comment-87</guid>
		<description>... and Mock Objects too!  I keep hearing about them, but no idea how to use them!!

I just reading this CodeProject article about Test-Driven Development:
http://www.codeproject.com/KB/dotnet/tdd_in_dotnet.aspx

It was written back in 2003!  I&#039;m sure the principles are the same, but the technology must have advanced since then!?</description>
		<content:encoded><![CDATA[<p>&#8230; and Mock Objects too!  I keep hearing about them, but no idea how to use them!!</p>
<p>I just reading this CodeProject article about Test-Driven Development:<br />
<a href="http://www.codeproject.com/KB/dotnet/tdd_in_dotnet.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/tdd_in_dotnet.aspx</a></p>
<p>It was written back in 2003!  I&#8217;m sure the principles are the same, but the technology must have advanced since then!?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
