vote up 1 vote down star

I'm running VS2008's Code Coverage against a unit-tested DLL that I'm developing. For some of the functions it claims that 2 blocks are not covered and 50 or so are. When I view the function with the VS2008 highlighting it can't find the uncovered blocks.

The highlighting appears to work with some functions though as it correctly shows a different color for uncovered blocks. Seems to be inconsistent.

Is this a bug or PIBKAC? If the latter, what am I doing wrong?

flag

73% accept rate

3 Answers

vote up 1 vote down check

I've seen some issues where the code coverage analyzer has trouble with closing braces on try/catch blocks. When I see these sorts of things, I just don't worry about it -- as long as I can see that the actual code gets covered.

[EDIT] I'd second the TestDriven.NET recommendation. I like it for the right-click test menus that let me easily run individual tests and I also use NCover rather than the built-in coverage -- mostly because it opens in another window and doesn't color the text in my main editor.

link|flag
1  
It's easy to run individual tests in VS: instead of Run All Tests In Solutions (Ctrl+R/A and Ctrl+R/Ctrl+A) you have Run Tests In Context (Ctrl+R/T and Ctrl+R/Ctrl+T) which runs tests based on where the cursor is. In TestClass runs class, in TestMethod runs just that method. – peSHIr Apr 2 at 12:06
vote up 1 vote down

Make sure to differentiate between covered blocks and partly covered blocks. The color is similar in the default settings, if i recall correctly.

link|flag
vote up 1 vote down

Just a suggestion, try the code coverage tool from TestDriven.Net and compare the results.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.