Nunit integration in windowed application in VS2005 using C #
2 answers
Sounds like you want to run NUnit from your exe?
Unless you run into a lot of problems, this sounds like the best option to me: include in your package the NUnit exe (and dll) console and execute through Process.Start
, grabbing stdout (or write to a file, which may be easier). Then analyze the output file.
It might not be as pretty as the GUI version, but it will probably be easier to deploy.
0
a source to share