Nunit integration in windowed application in VS2005 using C #

I am developing a window application in VS2005 with C #. I need to integrate NUnit into my project. Basically I need to implement the Run option available in NUint. How can i do this?

0


a source to share


2 answers


TestDriven.Net is a .Net plugin in Vs2005 that will help you with this.



+1


a source


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







All Articles