Welcome, Guest!

NCover and MSTest

NCover and MSTest

by itbuildmaster on Friday November 07, 2008, 10:44 PM

When I attempt to use NCover with my MSTest assembly the results that are returned in the report are all 0%. Is there an option I need to enable in our MSTest projects so that NCover can correctly measure the code coverage?

RE: NCover and MSTest

by sporewell on Monday November 10, 2008, 01:29 PM

either pass "/noisolation" to MSTest, or upgrade to NCover v2.1 and pass NCover "//pm Vstesthost.exe" as an argument on the command line.

Stephen

RE: NCover and MSTest

by itbuildmaster on Monday November 10, 2008, 03:37 PM

I just used the '/noisolation' perameter and it's working! Thanks