I discovered, that "Line Rate", "Lines of Code", "Lines Executed", "Lines Not Executed" in NCover Code Coverage results don't present right values, their values actually correspond to sequence points coverage, not line coverage. I think, I found the problem code, class: NCoverReportParser, method: parse https://bitbucket.org/atlassian/bamboo-dotnet-plugin/src/default/src/main/java/com/atlassian/bamboo/plugin/dotnet/ncover/NCoverReportParser.java
linesOfCode = getLongValueFromNode(document, "count(//seqpnt)");
linesExecuted = getLongValueFromNode(document, "count(//seqpnt[not(@vc=0 or @visitcount=0)])");
lineRate = linesExecuted.doubleValue() / linesOfCode.doubleValue();
"Lines of code" is just a number of sequence points from this code, but this is wrong. Is there any hope that it can be fixed? Thanks in advance.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.