Possible to get coverage on Process that is launch by Nunit
I am using Nunit to run my unit test, in my nunit test dll I am launching a process (which I then test using UI Automation (if interested see following page for more details on UI automation http://msdn.microsoft.com/msdnmag/issues/05/09/TestRun/default.aspx)). Currrently I am getting code coverage on the test dll, but not the Process that is launch. I have tried to use //a passing the assemblies of the process that is being started, but this does not workr. Any suggestions how to get code coverage on the process that is started would be greatly appreciated.
Thanks