views:

75

answers:

3

Can I run nUnit tests in Visual Studio (for instance)?

A: 

You can get TestDriven.NET. This add-in for Visual Studio supports the following test frameworks:

NUnit
MbUnit
ZaneBug
MSTest
NCover
NCoverExplorer
Reflector
TypeMock
dotTrace
MSBee

The "personal" version is free.

Robert Harvey
A: 

No. But Testdriven.NET supports the internal tests and many others.

Mitch Wheat
A: 

Not really. See Visual Studio Support in the NUnit documentation:

Visual Studio support in this release is a sort of “poor man’s integration.” We have implemented a number of features while avoiding any that would require using an Addin or otherwise interacting with the Visual Studio extensibility model.

Also, FYI, ReSharper has a test runner that can run NUnit tests inside of Visual Studio.

John Saunders