Viewing Source Code

Hits and missed lines

1012

Lines that are hit (covered and executed).
The number in the green label represents execute count.

1032

Lines that are missed (not covered and not executed).

Partially covered lines

1114

Line 329 is partially hit.

Partially hit lines are typically branches that have one, or more, missing execution paths. In the example above, the missing execution path is clearly entering the if branch. The result of ref.name() == "" was always False, therefore the proceeding lines were never executed.

Line coverage changes

914

This layout is an example of Unexpected Coverage Changes. The coverage on line 149 and 150 was covered before this commit. Now these lines are partially hit and missed, respectively.

Diff overlay

2130 2288