How to run Dll's in NCover.console.exe

How to run Dll's in NCover.console.exe

Hi,

I am doing a coverage for Managed code. I want do coverage for Dll's impacted. I am using Ncover.console.exe. I dont have the automated test cases or test code . We will execute the testcases or usecases manually. So how can i achieve the covergae for my Dll's under NCover.console.exe by executing the use cases manually.


RE: How to run Dll's in NCover.console.exe

Hi Sri,

NCover can only profile assemblies that are loaded by the .NET compiler, so you have to execute your code either by automated or manual tests, or by running an executable that calls your code.

Do you have an exe that will let you run the code manually?

NCover Support