I’m cheap and don’t want to pay for ReSharper or TestDriven.NET, is there a free visual Studio addin for NUnit?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.