.NET Testing Framework Advice - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T18:02:15Zhttp://stackoverflow.com/feeds/question/709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709/net-testing-framework-advice13.NET Testing Framework Advicesaalon2008-08-03T14:53:53Z2009-04-30T10:39:16Z
<p>I'm looking to introduce a unit testing framework into the mix at my job. We're using Visual Studio 2005 (though we may be moving to 2008 within the next 6 months) and work primarily in C#. If the framework has some kind of IDE integration that would be best, but I'm open to frameworks that don't have integration but are still relatively simple to get set up. I'm going to get resistance to it one way or another, so if I can make sure what I'm pushing isn't a pain in the neck, that would help my case.</p>
<p>The obvious choice from the research I've done so far points to nUnit, but I'd like to get the impressions of someone who's actually used it before recommending it to my team.</p>
<p>Has anyone out there used nUnit? If so, are there any pitfalls or limitations of which I should be aware? Are there other good options out there? If so, if you've used both nUnit at that, I'd greatly appreciate an idea of the strengths and weaknesses of them.</p>
<p>Eric Sipple</p>
http://stackoverflow.com/questions/709/net-testing-framework-advice/712#7127Answer by Michael Stum for .NET Testing Framework AdviceMichael Stum2008-08-03T14:57:44Z2008-08-03T14:57:44Z<p>Scott Hanselman had a good Podcast about this, entitled "The Past, Present and Future of .NET Unit Testing Frameworks":</p>
<p><a href="http://www.hanselminutes.com/default.aspx?showID=130" rel="nofollow">Hanselminutes #112</a></p>http://stackoverflow.com/questions/709/net-testing-framework-advice/713#71325Answer by Karl Seguin for .NET Testing Framework AdviceKarl Seguin2008-08-03T14:59:20Z2008-08-03T14:59:20Z<p>I think NUnit <strong>is</strong> your best bet. With TestDriven.NET, you get great integration within VS.NET. (Resharper also has a unit test runner if you're using it). NUnit it simple to use and follows an established paradigm. You'll also find plenty of projects/tutorials/guides using it which always helps.</p>
<p>Your other main choice is probably MBUnit, which is more and more position itself as the BDD framework of choice (in conjunction with Gallio <a href="http://www.gallio.org" rel="nofollow">http://www.gallio.org</a>).</p>http://stackoverflow.com/questions/709/net-testing-framework-advice/718#7183Answer by denny for .NET Testing Framework Advicedenny2008-08-03T15:07:20Z2008-08-03T15:07:20Z<p>Visual Studio 2008 has a built in test project type that works in a similar way to NUnit, but obviously has much tighter integration with Visual Studio (can run on every build and shows the results in a similar way to the conversion results page when upgrading solution files), but it is obviously not as mature as NUnit as it's pretty new and I'm not sure about how it handles mocking.</p>
<p>But it would be worth looking into when your team moves to VS2008</p>http://stackoverflow.com/questions/709/net-testing-framework-advice/798#7981Answer by Dan for .NET Testing Framework AdviceDan2008-08-03T19:36:48Z2008-08-03T19:36:48Z<p>mbUnit is worth alook, it has a set of features comparable to NUnit, it has its own GUI, or can be integrated into VS if you have Resharper. I would also recommend Rhino Mocks if you are doing any sort of TDD.</p>http://stackoverflow.com/questions/709/net-testing-framework-advice/4290#42901Answer by Kevin Sheffield for .NET Testing Framework AdviceKevin Sheffield2008-08-07T01:55:51Z2008-08-07T01:55:51Z<p>I would say mbUnit also, I like being able to run a single test many times just by specifying inputs and result right above the test function. Horrible description of what I mean so <a href="http://www.hanselman.com/blog/MbUnitUnitTestingOnCrack.aspx" rel="nofollow">here is a link that shows you what I mean.</a></p>http://stackoverflow.com/questions/709/net-testing-framework-advice/71134#711341Answer by capgpilk for .NET Testing Framework Advicecapgpilk2008-09-16T10:46:09Z2008-09-16T10:46:09Z<p>When I started unit testing I started with NUnit as it is simple to set up and use, currently I am using the built in test runner that comes with Resharper, that way I can easily flip between code and test results.
Incidently NUnit detects when you have compiled your code so you do not need to do any refresh in NUnit. Resharper automatically does a build when you choose to run a specific test.</p>
http://stackoverflow.com/questions/709/net-testing-framework-advice/71142#711423Answer by qui for .NET Testing Framework Advicequi2008-09-16T10:48:30Z2008-09-16T10:48:30Z<p>The built in unit testing in VS 2008 is alright, but its difficult to integrate with CruiseControl.net, certainly a lot harder than normal NUnit. </p>
<p>So go with NUnit if you plan to have nice automated tests.</p>
http://stackoverflow.com/questions/709/net-testing-framework-advice/157451#1574512Answer by NormanR for .NET Testing Framework AdviceNormanR2008-10-01T12:57:34Z2008-10-01T12:57:34Z<p>We've been using <a href="http://www.codeplex.com/xunit" rel="nofollow">xUnit.net</a>. It seems to combine all the best of nUnit, mbUnit and MSTest.</p>
http://stackoverflow.com/questions/709/net-testing-framework-advice/205009#2050090Answer by TDD for .NET Testing Framework AdviceTDD2008-10-15T14:48:32Z2008-10-15T14:48:32Z<p>A very <a href="http://weblogs.asp.net/mehfuzh/archive/2008/04/21/mocking-static-methods-with-typemock.aspx" rel="nofollow">interesting post</a> on using <a href="http://www.typemock.com" rel="nofollow">Typemock</a> and <a href="http://www.nunit.org" rel="nofollow">Nunit</a>.</p>
http://stackoverflow.com/questions/709/net-testing-framework-advice/763178#7631782Answer by YordanGeorgiev for .NET Testing Framework AdviceYordanGeorgiev2009-04-18T09:00:33Z2009-04-30T10:39:16Z<p>Try also <a href="http://research.microsoft.com/en-us/projects/Pex/" rel="nofollow">PEX</a> tool
It Microsoft's own probably soon to be integrated into VSTS
and does support NUnit , MbUnit and xUnit.net </p>
<p>I use also small Console Application for testing one class or small library. You could copy paste the code from <a href="http://ysgitdiary.blogspot.com/2009/04/example-console-application-in-c-ready.html" rel="nofollow">here</a></p>