.NET Testing Framework Advice - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:02:15Z http://stackoverflow.com/feeds/question/709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709/net-testing-framework-advice 13 .NET Testing Framework Advice saalon 2008-08-03T14:53:53Z 2009-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#712 7 Answer by Michael Stum for .NET Testing Framework Advice Michael Stum 2008-08-03T14:57:44Z 2008-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#713 25 Answer by Karl Seguin for .NET Testing Framework Advice Karl Seguin 2008-08-03T14:59:20Z 2008-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#718 3 Answer by denny for .NET Testing Framework Advice denny 2008-08-03T15:07:20Z 2008-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#798 1 Answer by Dan for .NET Testing Framework Advice Dan 2008-08-03T19:36:48Z 2008-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#4290 1 Answer by Kevin Sheffield for .NET Testing Framework Advice Kevin Sheffield 2008-08-07T01:55:51Z 2008-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#71134 1 Answer by capgpilk for .NET Testing Framework Advice capgpilk 2008-09-16T10:46:09Z 2008-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#71142 3 Answer by qui for .NET Testing Framework Advice qui 2008-09-16T10:48:30Z 2008-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#157451 2 Answer by NormanR for .NET Testing Framework Advice NormanR 2008-10-01T12:57:34Z 2008-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#205009 0 Answer by TDD for .NET Testing Framework Advice TDD 2008-10-15T14:48:32Z 2008-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#763178 2 Answer by YordanGeorgiev for .NET Testing Framework Advice YordanGeorgiev 2009-04-18T09:00:33Z 2009-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>