Can VS2008 Testrunner run MbUnit tests or not? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T03:20:14Zhttp://stackoverflow.com/feeds/question/372291http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/372291/can-vs2008-testrunner-run-mbunit-tests-or-not4Can VS2008 Testrunner run MbUnit tests or not?George Mauer2008-12-16T18:56:54Z2009-03-30T03:31:28Z
<p>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 <a href="http://weblogs.asp.net/astopford/archive/2008/07/03/mbunit-v3-in-visual-studio-team-system-2008.aspx" rel="nofollow">this article</a> 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.</p>
<p>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?</p>
http://stackoverflow.com/questions/372291/can-vs2008-testrunner-run-mbunit-tests-or-not/372726#3727262Answer by Jeff Brown for Can VS2008 Testrunner run MbUnit tests or not?Jeff Brown2008-12-16T21:09:37Z2008-12-16T21:09:37Z<p>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:</p>
<p><a href="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/" rel="nofollow">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/</a></p>
<p>Be aware that we are still ironing out some performance issues with large test projects in VSTS.</p>
http://stackoverflow.com/questions/372291/can-vs2008-testrunner-run-mbunit-tests-or-not/686602#6866021Answer by Troy DeMonbreun for Can VS2008 Testrunner run MbUnit tests or not?Troy DeMonbreun2009-03-26T16:43:19Z2009-03-26T16:43:19Z<p>Try using MbUnit v3 alpha 3 (if you aren't already), and see if this article helps:</p>
<p><a href="http://weblogs.asp.net/astopford/archive/2008/07/03/mbunit-v3-in-visual-studio-team-system-2008.aspx" rel="nofollow">http://weblogs.asp.net/astopford/archive/2008/07/03/mbunit-v3-in-visual-studio-team-system-2008.aspx</a></p>
http://stackoverflow.com/questions/372291/can-vs2008-testrunner-run-mbunit-tests-or-not/695924#6959242Answer by Garo Yeriazarian for Can VS2008 Testrunner run MbUnit tests or not?Garo Yeriazarian2009-03-30T03:31:28Z2009-03-30T03:31:28Z<p>I had to install Gallio 3.0.5 or better from <a href="http://www.gallio.org" rel="nofollow">http://www.gallio.org</a>. 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).</p>