When I am creating a test project in Visual Studio, do I just create a C# console project type, then import Nunit?
Does the GUI then hook into this project somehow?
There seems to be tons of nunit related .dll’s, which ones do I need?
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.
Just create a class library (i.e. a DLL). You only need to import nunit.framework.dll.
Yes, the nUnit GUI loads your assembly (which can be a DLL or a .EXE) and finds all the public classes which have been marked with the appropriate attributes.