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
Imagine you have a huge project with low coverage and you want to bring coverage up. It would be useful if you could mark sections of code or files with a coverage minimum. Similar to
// $COVERAGE-OFF$
code
// $COVERAGE-ON$
you could have
// $FULL-COVERAGE-ON$
code
// $FULL-COVERAGE-OFF$
for a section you expect full coverage.
My use for this is that I want to mark sections of code as fully covered and prevent somebody from introducing a coverage reduction.
The text was updated successfully, but these errors were encountered:
Imagine you have a huge project with low coverage and you want to bring coverage up. It would be useful if you could mark sections of code or files with a coverage minimum. Similar to
you could have
for a section you expect full coverage.
My use for this is that I want to mark sections of code as fully covered and prevent somebody from introducing a coverage reduction.
The text was updated successfully, but these errors were encountered: