Coverage on If statements
Ncrunch does not appear to check all conditions in an if statement for 100% coverage.
i.e. if (x || y) only requires that x is tested, not y.
27
votes

-
Roman commented
NCrunch should indicate lines with partial coverage. For example have half the circle colored red and half green.
-
Anonymous commented
Same goes for when the whole if condition is false (cases where the if block is not entered, even if there is no explicit else clause)