Is there a free Visual Studio addin for Nunit? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:28:45Z http://stackoverflow.com/feeds/question/247900 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit 12 Is there a free Visual Studio addin for Nunit? Eric Labashosky 2008-10-29T18:34:17Z 2009-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#247914 5 Answer by ema for Is there a free Visual Studio addin for Nunit? ema 2008-10-29T18:36:35Z 2008-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#247917 8 Answer by SoloBold for Is there a free Visual Studio addin for Nunit? SoloBold 2008-10-29T18:36:56Z 2008-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#247920 11 Answer by Daok for Is there a free Visual Studio addin for Nunit? Daok 2008-10-29T18:38:02Z 2008-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#247930 4 Answer by Cory Foy for Is there a free Visual Studio addin for Nunit? Cory Foy 2008-10-29T18:40:17Z 2008-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#248001 2 Answer by Daok for Is there a free Visual Studio addin for Nunit? Daok 2008-10-29T19:00:10Z 2008-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>