How to discard all 0% entries ? Follow
I have a large C# code base and I'm examining the code coverage results of (short) manual tests.
Since most assemblies & methods have 0% coverage I'm forced to excessively scroll through the results and search for all the non-zero % methods.
Is there a way to automatically discard or ignore all methods that did not get executed at all ? I want my results to only show results with a positive % without including all the 0% methods.
Please sign in to leave a comment.
Hi Martin,
There's no way to discard all 0% entries, but you can set up coverage filters to include into the coverage report only assemblies/methods you're interested in.
Here's a topic about covergare filters in our web help: http://www.jetbrains.com/dotcover/webhelp/dotCover__Setting_up_Coverage_Filters.html
Please let me know if you'll have further questions.
http://www.jetbrains.com/dotcover/webhelp/dotCover__Setting_up_Coverage_Filters.html
Regards.