Is there a free Visual Studio addin for Nunit?

Eric Labashosky picture Eric Labashosky · Oct 29, 2008 · Viewed 19.6k times · Source

I'm cheap and don't want to pay for ReSharper or TestDriven.NET, is there a free visual Studio addin for NUnit?

Answer

Patrick Desjardins picture Patrick Desjardins · Oct 29, 2008

You can create a blank project (Choose console application for example) and in the property of the project you can select DEBUG tag and select "Start External Program". Put the path of Nunit. Then, in the start option, the command line arguments select the DLL that contains all your tests (mine is always in the nunit\bin...). Then select "enable unmanaged code debugging" and you will be able to start the project inside VS and even use the debugger step-by-step.

This is a free solution.