NCover.Console

NCover.Console

I can't execute NCover.Console pls help le on the syntax I need to test the branch coverage of my test code. I have two dll, pls teach me tnx


RE: NCover.Console

What testing tool did you write your tests with, NUnit, MBUnit?

If you used nunit you could use the following command line

ncover.console.exe nunit-console.exe dllname1 dllname2 //x Coverage.xml

You will get branch and symbols coverage by default so the flags is not needed.

Joe