q1. how can I get code coverage colours to show in...
# random
d
q1. how can I get code coverage colours to show in the file in the editor? I can see the covered lines if I export the HTML (in the HTML) - but in the editor, the coloured bars I see only seem to relate to changes since last commit q2. what does partial line coverage mean on a line like
if (x != null) {
(yellow) (and then the following lines are fully covered (green) inside the
if
block) - does that mean that
x
was never
null
?
m
Q2: Yes,
x
was never
null
.