<?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: TDD with Visual Studio &#8211; to do or not to do</title>
	<atom:link href="http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/</link>
	<description>Thoughts on VSTS, Sharepoint and other collaborative technologies</description>
	<lastBuildDate>Sun, 04 Apr 2010 05:36:54 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: MikeAzocar</title>
		<link>http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/comment-page-1/#comment-16</link>
		<dc:creator>MikeAzocar</dc:creator>
		<pubDate>Wed, 14 Nov 2007 20:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nwcadence.com/2007/11/08/tdd-with-visual-studio-to-do-or-not-to-do/#comment-16</guid>
		<description>I agree with some of the points each of you made.

Chris.  You are right, Resharper makes TDD so much easier.

Jeff.  I agree that there is more than one way to be successful with TDD.  You have to be flexible and take the practices that work best for the project and the development team.</description>
		<content:encoded><![CDATA[<p>I agree with some of the points each of you made.</p>
<p>Chris.  You are right, Resharper makes TDD so much easier.</p>
<p>Jeff.  I agree that there is more than one way to be successful with TDD.  You have to be flexible and take the practices that work best for the project and the development team.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Levinson</title>
		<link>http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/comment-page-1/#comment-10</link>
		<dc:creator>Jeff Levinson</dc:creator>
		<pubDate>Wed, 14 Nov 2007 15:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nwcadence.com/2007/11/08/tdd-with-visual-studio-to-do-or-not-to-do/#comment-10</guid>
		<description>Thanks Chris, sorry it took so long to write back. Your points are excellent but... One of the things about this view is that there is only one way to do it &quot;correctly&quot;. I like to think that even without following TDD to the nth degree that developers can get benefit out of it. And there are plenty of add-ins that work with unit testing in Visual Studio. Granted, we would all like to see more built in but I don&#039;t think Microsoft can ever really compete with the full resources of the open source community so their add-ins are a blessing! :)</description>
		<content:encoded><![CDATA[<p>Thanks Chris, sorry it took so long to write back. Your points are excellent but&#8230; One of the things about this view is that there is only one way to do it &#8220;correctly&#8221;. I like to think that even without following TDD to the nth degree that developers can get benefit out of it. And there are plenty of add-ins that work with unit testing in Visual Studio. Granted, we would all like to see more built in but I don&#8217;t think Microsoft can ever really compete with the full resources of the open source community so their add-ins are a blessing! <img src='http://blog.nwcadence.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Team System News : VSTS Links - 11/14/2007</title>
		<link>http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/comment-page-1/#comment-8</link>
		<dc:creator>Team System News : VSTS Links - 11/14/2007</dc:creator>
		<pubDate>Wed, 14 Nov 2007 13:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nwcadence.com/2007/11/08/tdd-with-visual-studio-to-do-or-not-to-do/#comment-8</guid>
		<description>[...] Jeff Levinson on TDD with Visual Studio - to do or not to do. [...]</description>
		<content:encoded><![CDATA[<p>[...] Jeff Levinson on TDD with Visual Studio &#8211; to do or not to do. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Brandsma</title>
		<link>http://blog.nwcadence.com/2007/11/tdd-with-visual-studio-to-do-or-not-to-do/comment-page-1/#comment-6</link>
		<dc:creator>Chris Brandsma</dc:creator>
		<pubDate>Thu, 08 Nov 2007 19:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nwcadence.com/2007/11/08/tdd-with-visual-studio-to-do-or-not-to-do/#comment-6</guid>
		<description>Nice article, but two things:

1. NUnit and MBUnit are generally preferred over MSUnit by 95% of the community.  MSUnit has a few nasty bugs in that still haven&#039;t been addressed as of VS 2008.  See Roy Osheroves blog. http://weblogs.asp.net/rosherove/archive/2007/10/16/unit-testing-in-vs-2008-still-not-there.aspx
Pick up Test Driven.Net or ReSharper for test integration.   

Check that, whatever you do, pick up ReSharper.  You wont be sorry.

2. Proper unit testing cannot be done without mock object support (which is not included in MSUnit, NUnit, or MBUnit).  Check out Rhino Mocks for that.
http://www.ayende.com/projects/rhino-mocks.aspx

3. Understanding Unit Testing is the easy part.  Figuring out how to write testable code is the hard part.  If you are looking for a place to start, learn about &quot;Separation of Concerns&quot;.  Jeremy Miller has a nice post on it here:
http://codebetter.com/blogs/jeremy.miller/articles/129542.aspx

After that, study MVP and MVC as a starting point for doing just that.</description>
		<content:encoded><![CDATA[<p>Nice article, but two things:</p>
<p>1. NUnit and MBUnit are generally preferred over MSUnit by 95% of the community.  MSUnit has a few nasty bugs in that still haven&#8217;t been addressed as of VS 2008.  See Roy Osheroves blog. <a href="http://weblogs.asp.net/rosherove/archive/2007/10/16/unit-testing-in-vs-2008-still-not-there.aspx" rel="nofollow">http://weblogs.asp.net/rosherove/archive/2007/10/16/unit-testing-in-vs-2008-still-not-there.aspx</a><br />
Pick up Test Driven.Net or ReSharper for test integration.   </p>
<p>Check that, whatever you do, pick up ReSharper.  You wont be sorry.</p>
<p>2. Proper unit testing cannot be done without mock object support (which is not included in MSUnit, NUnit, or MBUnit).  Check out Rhino Mocks for that.<br />
<a href="http://www.ayende.com/projects/rhino-mocks.aspx" rel="nofollow">http://www.ayende.com/projects/rhino-mocks.aspx</a></p>
<p>3. Understanding Unit Testing is the easy part.  Figuring out how to write testable code is the hard part.  If you are looking for a place to start, learn about &#8220;Separation of Concerns&#8221;.  Jeremy Miller has a nice post on it here:<br />
<a href="http://codebetter.com/blogs/jeremy.miller/articles/129542.aspx" rel="nofollow">http://codebetter.com/blogs/jeremy.miller/articles/129542.aspx</a></p>
<p>After that, study MVP and MVC as a starting point for doing just that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
