NCover and MSTest
NCover and MSTest
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
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
I just used the '/noisolation' perameter and it's working! Thanks