You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
which counts 5 paths (the first, uncovered one, being an instance of #786), the next 2 being the two values of the Close type that are treated as the default: case, then the two values treated individually.
What's interesting here is that we have 2 if statements and a 3(+2)-way match inside the sequence point, so one might expect more paths, ultimately corresponding to the five we see plus the two duplicated cases, to be reported here.
The text was updated successfully, but these errors were encountered:
My Framework
My Environment
I have already...
My issue is related to (check only those which apply):
Expected Behavior
The
bec=
value for a sequence point should equal the number of paths counted within itActual Behavior
Only part of a complicated branching gets counted in the
bec=
valueSteps to reproduce the problem:
The code I have looks like
which decompiles to
The OpenCover XML for the match sequence point is
with the next sequence point being at
offset=190
; but the branch points listed for thematch
offset arewhich counts 5 paths (the first, uncovered one, being an instance of #786), the next 2 being the two values of the
Close
type that are treated as thedefault:
case, then the two values treated individually.What's interesting here is that we have 2
if
statements and a 3(+2)-way match inside the sequence point, so one might expect more paths, ultimately corresponding to the five we see plus the two duplicated cases, to be reported here.The text was updated successfully, but these errors were encountered: