MbUnit has a Visual Studio Add-In using the NUnitAddIn framework. Setting the framework is done through the following steps:
<?xml version="1.0"?> <configuration> <nunitaddin> <frameworktestrunners> <testRunner name="MbUnit" typeName="MbUnit.AddIn.MbUnitTestRunner" assemblyPath="MbUnit.AddIn.dll" /> <testRunner name="NUnit" typeName="NUnitAddIn.NUnit.TestRunner.SimpleNUnitTestRunner" assemblyPath="NUnitAddIn.NUnit.dll" /> ... </frameworktestrunners> </nunitaddin> </configuration>
That's it. You can now right click on an assembly, namespace or fixture and execute it using "Run Tests...".
Page rendered at Sunday, September 07, 2008 9:27:46 PM UTC
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.