Favorite .NET Unit Testing framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:49:22Z http://stackoverflow.com/feeds/question/127687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework 7 Favorite .NET Unit Testing framework Dror Helper 2008-09-24T15:00:01Z 2009-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#127699 18 Answer by Craig for Favorite .NET Unit Testing framework Craig 2008-09-24T15:01:52Z 2008-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#127700 3 Answer by Jason N. Gaylord for Favorite .NET Unit Testing framework Jason N. Gaylord 2008-09-24T15:01:58Z 2008-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#127714 2 Answer by Max Schmeling for Favorite .NET Unit Testing framework Max Schmeling 2008-09-24T15:04:07Z 2008-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#127722 7 Answer by Sam Wessel for Favorite .NET Unit Testing framework Sam Wessel 2008-09-24T15:05:49Z 2008-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#127726 1 Answer by Chris Wenham for Favorite .NET Unit Testing framework Chris Wenham 2008-09-24T15:06:30Z 2008-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#127732 8 Answer by Brad Wilson for Favorite .NET Unit Testing framework Brad Wilson 2008-09-24T15:07:52Z 2008-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#127920 3 Answer by Mariano for Favorite .NET Unit Testing framework Mariano 2008-09-24T15:35:55Z 2008-09-24T15:35:55Z <p>NUnit. We can use it on CC. </p> http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/127922#127922 2 Answer by craigb for Favorite .NET Unit Testing framework craigb 2008-09-24T15:36:10Z 2008-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#128281 4 Answer by Sam Wessel for Favorite .NET Unit Testing framework Sam Wessel 2008-09-24T16:43:03Z 2009-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#140721 6 Answer by Kevin Dostalek for Favorite .NET Unit Testing framework Kevin Dostalek 2008-09-26T17:11:48Z 2008-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#156602 2 Answer by Lee for Favorite .NET Unit Testing framework Lee 2008-10-01T07:46:09Z 2008-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#1076919 1 Answer by Chris Pietschmann for Favorite .NET Unit Testing framework Chris Pietschmann 2009-07-02T22:12:21Z 2009-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#1076943 1 Answer by Scott Weinstein for Favorite .NET Unit Testing framework Scott Weinstein 2009-07-02T22:21:20Z 2009-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#1627224 1 Answer by vikram nayak for Favorite .NET Unit Testing framework vikram nayak 2009-10-26T20:43:17Z 2009-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>