up vote 4 down vote favorite
1
share [g+] share [fb]

Ok, so I keep seeing how VS2008 has this nice unit test display and I can see people running NUnit tests within it on Dimecasts.net and this article seems to imply that MbUnit v3 should have support for using visual studio's test runner. And yet I can't get it to recognize my tests.

Has anyone else been able to get Visual Studio to run their MbUnit tests and if so did you have to do anything special to get it configured?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted
+100

I had to install Gallio 3.0.5 or better from http://www.gallio.org. It automatically installed in Visual Studio Professional or Team Editions. Note: VS Standard doesn't support test projects. After installing Gallio, you can create MbUnit test projects that should work right. I was able to run Xunit.NET tests with this setup (in VS 2008 Professional).

link|improve this answer
Ah didn't realize that you had to create a specific project type. – George Mauer Mar 30 '09 at 21:53
feedback

It is supported but you must modify your project file slightly by adding the right ProjectTypeGuid so that VSTS recognizes it as a test project:

http://alexduggleby.com/2008/02/19/turning-a-class-library-project-into-a-mstest-project-or-using-mbunit-mstest-and-other-frameworks-in-one-project/

Be aware that we are still ironing out some performance issues with large test projects in VSTS.

link|improve this answer
Still not seeing any of my tests. I'm using MbUnit 3.0.5.546 – George Mauer Dec 17 '08 at 17:50
feedback

Try using MbUnit v3 alpha 3 (if you aren't already), and see if this article helps:

http://weblogs.asp.net/astopford/archive/2008/07/03/mbunit-v3-in-visual-studio-team-system-2008.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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