Favorite .NET Unit Testing framework - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:49:22Zhttp://stackoverflow.com/feeds/question/127687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework7Favorite .NET Unit Testing frameworkDror Helper2008-09-24T15:00:01Z2009-10-26T20:43:17Z
<p>I've been using NUnit for a few years. I've tried MBUnit for a short while as well as Zenebug and XUnit but I keep coming back to NUnit.</p>
<p>What is your favorite/most used Unit test Framework? Can you explain why you're using it?</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127699#12769918Answer by Craig for Favorite .NET Unit Testing frameworkCraig2008-09-24T15:01:52Z2008-09-24T15:01:52Z<p>Nunit for the win!! It is simple and easy to implement. No mess, no fuss.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127700#1277003Answer by Jason N. Gaylord for Favorite .NET Unit Testing frameworkJason N. Gaylord2008-09-24T15:01:58Z2008-09-24T15:01:58Z<p>I've used Nunit for quite some time, but I happen to prefer things baked into VS. So, I'm now using MSUnit. Just a preference for having less add-ins installed in VS.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127714#1277142Answer by Max Schmeling for Favorite .NET Unit Testing frameworkMax Schmeling2008-09-24T15:04:07Z2008-09-24T15:04:07Z<p>I like xUnit because of the way it uses the constructor and Dispose methods instead of having to apply attributes to other methods for initialization and all that.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127722#1277227Answer by Sam Wessel for Favorite .NET Unit Testing frameworkSam Wessel2008-09-24T15:05:49Z2008-09-24T15:05:49Z<p><a href="http://www.mbunit.com" rel="nofollow">MbUnit</a></p>
<p>I like the way it handles reports, and I'm looking forward to some of the upcoming features I've heard about, such as integration with JsUnit.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127726#1277261Answer by Chris Wenham for Favorite .NET Unit Testing frameworkChris Wenham2008-09-24T15:06:30Z2008-09-24T15:06:30Z<p>I used to use NUnit, but now I prefer the framework that comes with Visual Studio 2008, simply because it has tighter integration and is easier to set up to test private methods.</p>
<p>We also had problems with keeping the versions of NUnit synchronized with the rest of the team. It was a minor annoyance (go and upgrade, or fix the project references), but it went away with the switch.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127732#1277328Answer by Brad Wilson for Favorite .NET Unit Testing frameworkBrad Wilson2008-09-24T15:07:52Z2008-09-24T15:07:52Z<p>xUnit.net, but I'm hardly unbiased. :)</p>
<p>Why I use it: <a href="http://www.codeplex.com/xunit/Wiki/View.aspx?title=WhyDidWeBuildXunit" rel="nofollow">http://www.codeplex.com/xunit/Wiki/View.aspx?title=WhyDidWeBuildXunit</a></p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127920#1279203Answer by Mariano for Favorite .NET Unit Testing frameworkMariano2008-09-24T15:35:55Z2008-09-24T15:35:55Z<p>NUnit. We can use it on CC. </p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127922#1279222Answer by craigb for Favorite .NET Unit Testing frameworkcraigb2008-09-24T15:36:10Z2008-09-24T15:36:10Z<p><a href="http://www.mbunit.com/" rel="nofollow">MbUnit</a> has compatible syntax with NUnit but has more features (especially data driven tests).</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/128281#1282814Answer by Sam Wessel for Favorite .NET Unit Testing frameworkSam Wessel2008-09-24T16:43:03Z2009-04-23T14:19:21Z<p><strong><a href="http://www.gallio.org/" rel="nofollow">Gallio</a></strong> looks like it's going to be awesome once it gets more stable (currently alpha).</p>
<p>It's not just a test framework, but a test automation platform, so it will work with many existing test frameworks (MbUnit, NUnit, xUnit.net) yet be fully extensible, with a number of built-in additional features such as report generation in many formats and code analysis tools. </p>
<p>I've also heard that it will be able to </p>
<ul>
<li>output image streams, so for example WatiN test failures can be output as screenshots, so you can see what state the browser was in when the test failed.</li>
<li>filter by namespace, so you can easily uncheck tests for an entire namespace before running them</li>
</ul>
<p>Edit: It is indeed out of alpha now. We've tried it at our company and we really hated it. It was horrible to use and very slow. What a shame.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/140721#1407216Answer by Kevin Dostalek for Favorite .NET Unit Testing frameworkKevin Dostalek2008-09-26T17:11:48Z2008-09-26T17:11:48Z<p>I've used nUnit for years, but when we moved to VS2008 and TFS 2008 (using TeamBuild) we decided to try MSTest. No huge complaints there... we really like how well it integrates with the IDE as well as the CI build server. </p>
<p>One new thing we're trying which looks to have awesome potential is another add-on from Microsoft Research called <a href="http://research.microsoft.com/pex" rel="nofollow">Pex</a> (requires VS2008). As they put it: "Pex generates unit tests from hand-written parameterized unit tests through automated exploratory testing based on dynamic symbolic execution." The way I put it is: this thing does static analysis on your unit test and target code and codegen's unit tests to achieve super high code coverage (which is often impractical if you're doing it by hand).</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/156602#1566022Answer by Lee for Favorite .NET Unit Testing frameworkLee2008-10-01T07:46:09Z2008-10-01T07:46:09Z<p>The support for NUnit tests in Resharper is great and sets the bar very high for me moving away from NUnit. I can run all the tests in a solution directly from Visual Studio, or I can drill down and concentrate on specific tests. When my code is checked in, my continuous integration build runs the same tests. This gives me a lot of confidence in my development process.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/1076919#10769191Answer by Chris Pietschmann for Favorite .NET Unit Testing frameworkChris Pietschmann2009-07-02T22:12:21Z2009-07-02T22:12:21Z<p>MSTest</p>
<p><a href="http://en.wikipedia.org/wiki/MSTest" rel="nofollow">http://en.wikipedia.org/wiki/MSTest</a></p>
<p>I don't know if it's my favorite (haven't really tried many others), but it's convenient since it's built into Visual Studio.</p>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/1076943#10769431Answer by Scott Weinstein for Favorite .NET Unit Testing frameworkScott Weinstein2009-07-02T22:21:20Z2009-07-02T22:21:20Z<ol>
<li>xUnit - less ceremony, support for data driven testing and other extentions</li>
</ol>
http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/1627224#16272241Answer by vikram nayak for Favorite .NET Unit Testing frameworkvikram nayak2009-10-26T20:43:17Z2009-10-26T20:43:17Z<p>I've been using NUnit for some 4 years now, would definitely recommend using it. Reshaper - a plugin for VisualStudio by JetBrains includes a UnitTestRunner which integrates nicely with VisualStudio and lets you run / debug your tests from directly from the IDE. Resharper, NUnit and RhinoMocks is my preferred suite of tools for UnitTesting.</p>