Closed
Description
In current implementation, a if
without else, when the cond
always taken, the code coverage report shows 100% code coverage and 50% branch coverage.
But the html doesn't show the line missing branch coverage. Something it makes app developer difficult to improve branch coverage.
Refer to GNU user experience, the missing branch coverage line need to be marked as yellow
if(cond){
}