up vote 29 down vote favorite
16
share [g+] share [fb]

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

link|improve this question

78% accept rate
feedback

8 Answers

up vote 34 down vote accepted

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. Than, in the start option, the command line arguments select the DLL that contain all your test (mine is always in the nunit\bin...). Than select "enable unmanaged code debugging" and you will be able to start the projet inside VS and even use the debugger step-by-step.

This is a free solution.

link|improve this answer
1  
+1 I've provided a step-by-step guide with images of how to do what you described. I'm also using NUnit this way. It also makes it possible to *debug your tests if you need to. – Robert Koritnik Jan 11 at 8:03
feedback

This article probably explains what you want to do.

3 Ways to Run NUnit From Visual Studio

link|improve this answer
feedback

Now you can use Gallio: it's open source. www.gallio.org

link|improve this answer
This is bad that most documentation and page of their website are in "TO DO". :\ – Daok Oct 29 '08 at 18:40
I tried this, and it looks very promising, but i just couldn't get then VS addin working. – Eric Labashosky Oct 29 '08 at 21:24
feedback

NUnit actually ships with a basic integrated runner. It's not very good, and not very publicized, but unless Charlie has taken it out, it should be in the source.

link|improve this answer
feedback

By the way TestDriven can be downloaded for free if it's for personal use or Open Source project.

I had to find a way to use .Net Reflector inside VS few days ago and when I downloaded TestDriven it cames with. Never got any popup asking me to paid.

link|improve this answer
feedback

I know this is an old question but another way to do this is to add an external tool from the tools menu to run nunit - set the arguments to be $(TargetName)$(TargetExt) and initial directory to $(ProjectDir)\bin\Debug

check out this link

link|improve this answer
1  
This is what I do. Quick and simple! – Christian Hayter Sep 17 '10 at 17:26
Awesome, thanks posting another way to do it!!! – Eric Labashosky Sep 23 '10 at 20:49
feedback

Check this link: NUnitAddin

link|improve this answer
feedback

I haven't used it, but NUnitit is a free Visual Studio Add-in for NUnit.

http://nunitit.codeplex.com

From my experience, the best add-in for visual studio is resharper. TestDriven.Net is also good for unit tests. Hope that helps

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.