I have been using TypeMock for a while, with TestDriven.Net to do unit testing and getting code coverage report. But sometimes, and in some machines, when we invoke Test With -> Coverage, the report has only the coverage details for the unit tests assembly. We have our code(lets call it "Exe") and unit tests("Tests") in separate assemblies. Our code("Exe") is targeted for .NET 2.0 runtime, but unit tests run on 3.5 to use TypeMock.
Then I tried using TMockRunner and NCOver3.0 to get coverage report. Sometimes, the report doesn't show coverage for the code and has only the test assembly's coverage. At some other times(I used //a "Exe"), even when the coverage report has the code, it doesn't show symbol coverage and doesn't load classes with coverage details(no numbers, no coloring).
I did some googling, but didn't find anyone reporting similar issues.
I was wondering if I'm missing something.
Thanks
Merrin