Is there a free Visual Studio addin for Nunit? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T13:28:45Zhttp://stackoverflow.com/feeds/question/247900http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit12Is there a free Visual Studio addin for Nunit?Eric Labashosky2008-10-29T18:34:17Z2009-01-13T01:00:58Z
<p>I'm cheap and don't want to pay for resharper or testdriven.net, is there a 'free' visual studio addin for nunit?</p>
http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit/247914#2479145Answer by ema for Is there a free Visual Studio addin for Nunit?ema2008-10-29T18:36:35Z2008-10-29T19:04:10Z<p>Now you can use Gallio: it's open source. <a href="http://www.gallio.org" rel="nofollow">www.gallio.org</a></p>
http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit/247917#2479178Answer by SoloBold for Is there a free Visual Studio addin for Nunit?SoloBold2008-10-29T18:36:56Z2008-10-29T18:36:56Z<p>This article probably explains what you want to do.</p>
<p><a href="http://www.dev102.com/2008/03/22/3-ways-to-run-nunit-from-visual-studio/" rel="nofollow">3 Ways to Run NUnit From Visual Studio</a></p>
http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit/247920#24792011Answer by Daok for Is there a free Visual Studio addin for Nunit?Daok2008-10-29T18:38:02Z2008-10-29T18:38:02Z<p>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.</p>
<p>This is a free solution.</p>
http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit/247930#2479304Answer by Cory Foy for Is there a free Visual Studio addin for Nunit?Cory Foy2008-10-29T18:40:17Z2008-10-29T18:40:17Z<p>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.</p>
http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit/248001#2480012Answer by Daok for Is there a free Visual Studio addin for Nunit?Daok2008-10-29T19:00:10Z2008-10-29T19:00:10Z<p>By the way <a href="http://www.testdriven.net/download_select.aspx" rel="nofollow">TestDriven</a> can be downloaded for free if it's for personal use or Open Source project.</p>
<p>I had to find a way to use <a href="http://stackoverflow.com/questions/234043/how-to-make-reflector-an-addin-for-visual-studios">.Net Reflecto</a>r inside VS few days ago and when I downloaded TestDriven it cames with. Never got any popup asking me to paid.</p>