Best test runner? (Unit Testing, .NET) - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:55:09Zhttp://stackoverflow.com/feeds/question/307357http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net4Best test runner? (Unit Testing, .NET)sloughk2008-11-21T00:04:31Z2009-07-19T16:02:25Z
<p>I'm using MBUnit Framework for unit testing and looking for a good test runner.</p>
<p>MbUnit's runner is fast however lacking lots of stuff such as </p>
<ul>
<li>You can't set execution path</li>
<li>It's collapsing all trees in every run which drives me crazy</li>
<li>And almost all other test runner provides so many extra quite and lovely features</li>
</ul>
<p>I used Zanebug, but:</p>
<ul>
<li>Not properly supported any more, kind of a dead project</li>
<li>I think it's not compatible with latest MBUnit because it keeps crashing on me</li>
<li>Got so many weird bugs</li>
</ul>
<p>Gallio</p>
<ul>
<li>Don't know why keeps crashing on startup, (Vista x64)</li>
<li>I've got it run in another setup, it's about 6 times slower than MBUnit GUI and I've got so many test,</li>
</ul>
<p>Test Driven .NET addon</p>
<ul>
<li>This is great little tool but just for testing one or unit test, doesn't provide a good or VS.NET independent GUI</li>
</ul>
<p>I'm open to any other free test runner which works with or independent from VS 2008</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307394#3073940Answer by ray247 for Best test runner? (Unit Testing, .NET)ray2472008-11-21T00:24:51Z2009-05-02T16:54:58Z<p>What is wrong with NUnit's GUI and console?</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307413#3074138Answer by Daok for Best test runner? (Unit Testing, .NET)Daok2008-11-21T00:33:16Z2008-11-21T00:33:16Z<p>I really enjoy NUnit. Now I enjoy even more since I can use it inside the IDE with ReSharper that let me do quick test for a method very fast.</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307472#3074721Answer by lomaxx for Best test runner? (Unit Testing, .NET)lomaxx2008-11-21T01:02:24Z2008-11-21T01:02:24Z<p>I don't know if ReSharper has built in support for MBUnit, but the built in test runner is fantastic. </p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307476#3074760Answer by mmiika for Best test runner? (Unit Testing, .NET)mmiika2008-11-21T01:04:40Z2008-11-21T01:04:40Z<p>I'm using resharper to run individual tests in IDE, but nunit-console to run all tests for speed.</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/307493#3074930Answer by sloughk for Best test runner? (Unit Testing, .NET)sloughk2008-11-21T01:07:35Z2008-11-21T01:07:35Z<p>Does nunit supports MbUnit's row test feature and other test features ?</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/308202#3082025Answer by Lasse V. Karlsen for Best test runner? (Unit Testing, .NET)Lasse V. Karlsen2008-11-21T08:41:40Z2008-11-21T08:41:40Z<p>Look at <a href="http://testdriven.net/" rel="nofollow">TestDriven</a>, it adds right-click unit-testing functionality inside Visual Studio. You can right-click a method, a class, a file, a project, or the solution, to run the unit tests that are appropriate. You can also debug, run code coverage, use some of the more popular profilers with it, etc.</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/308218#308218-1Answer by sloughk for Best test runner? (Unit Testing, .NET)sloughk2008-11-21T08:50:19Z2008-11-21T08:50:19Z<p>Thanks to everyone, </p>
<ul>
<li>I changed MBUnit references to NUnit and now Resharper works fine</li>
<li>Used Nunit-x86 GUI for (I'm running x64) and now NUnit GUI works fine as well</li>
</ul>
<p>Cheers,</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/358473#3584734Answer by Jeff Brown for Best test runner? (Unit Testing, .NET)Jeff Brown2008-12-11T04:49:39Z2008-12-11T04:49:39Z<p>Gallio includes ReSharper support.
We are also working to improve performance.</p>
<p>Not sure which version of Icarus you tried but I haven't seen it crash on startup on x64.</p>
http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/1150187#11501870Answer by Tartley for Best test runner? (Unit Testing, .NET)Tartley2009-07-19T16:02:25Z2009-07-19T16:02:25Z<p>We write our .NET tests in IronPython, which means we can write all our tests using the Python standard library module 'unittest'. The advantage of this is that running tests is a single command. We used to use cruise control and the like, but have since replaced it with about ten lines of Python. This works for both unit tests and functional tests. Obviously this won't work for everyone, but some people will probably find this a productive route to go.</p>