I understand NCOVER is an awesome tool to instrument .dll and run Nunit test cases. Is it possible to instrument .dll's and run manual test cases using NCOVER?

If yes how? If not then is there a .NET tool that can provide such a provision?

有帮助吗?

解决方案

Yes, you can run NCover on manually tested code, just the same as you would for unit tests or other automated code. You don't actually have to run a separate instrumentation step. Instrumentation is done automatically in the background.

In NCover 4 you would simply setup a project that monitors your application, and when it starts up NCover will automatically begin collecting coverage.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top