vote up 4 vote down star
2

I'm using MBUnit Framework for unit testing and looking for a good test runner.

MbUnit's runner is fast however lacking lots of stuff such as

  • You can't set execution path
  • It's collapsing all trees in every run which drives me crazy
  • And almost all other test runner provides so many extra quite and lovely features

I used Zanebug, but:

  • Not properly supported any more, kind of a dead project
  • I think it's not compatible with latest MBUnit because it keeps crashing on me
  • Got so many weird bugs

Gallio

  • Don't know why keeps crashing on startup, (Vista x64)
  • I've got it run in another setup, it's about 6 times slower than MBUnit GUI and I've got so many test,

Test Driven .NET addon

  • This is great little tool but just for testing one or unit test, doesn't provide a good or VS.NET independent GUI

I'm open to any other free test runner which works with or independent from VS 2008

flag

9 Answers

vote up 8 vote down check

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.

link|flag
While NUnit has a test runner, it is not a test runner per-se. ReSharper's the test runner in your case. – Bruno Lopes Jun 25 at 18:37
vote up 0 vote down

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.

link|flag
vote up 4 vote down

Gallio includes ReSharper support. We are also working to improve performance.

Not sure which version of Icarus you tried but I haven't seen it crash on startup on x64.

link|flag
This should be the accepted answer. The one about nUnit is an answer to another question. – Lemmy Sep 8 at 14:06
vote up -1 vote down

Thanks to everyone,

  • I changed MBUnit references to NUnit and now Resharper works fine
  • Used Nunit-x86 GUI for (I'm running x64) and now NUnit GUI works fine as well

Cheers,

link|flag
vote up 5 vote down

Look at TestDriven, 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.

link|flag
vote up 0 vote down

Does nunit supports MbUnit's row test feature and other test features ?

link|flag
Yes, row test is there but I don't think it's properly handled by all the various test runners. – JC Nov 21 '08 at 1:52
vote up 0 vote down

I'm using resharper to run individual tests in IDE, but nunit-console to run all tests for speed.

link|flag
vote up 1 vote down

I don't know if ReSharper has built in support for MBUnit, but the built in test runner is fantastic.

link|flag
doesn't work for MbUnit it complains about file not exist. Also it's not free, is it? – Chris Jester-Young Nov 21 '08 at 1:08
Actually it is not fantastic, I've had several unit tests fail because of it, while NUnit and TestDriven both report OK. It seems, though I haven't dug far enough down, that ReSharper loads the wrong runtime. – Lasse V. Karlsen Nov 21 '08 at 8:40
vote up 0 vote down

What is wrong with NUnit's GUI and console?

link|flag
Does NUnit GUI supports row tests and all MBUnit features ? – Mat Nov 21 '08 at 0:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.