How to ignore bitwise or with RegexOptions #1494
-
Hey, is it possible to ignore bitwise operations on RegexOptions? I tried adding |
Beta Was this translation helpful? Give feedback.
Answered by
rouke-broersma
Mar 27, 2021
Replies: 1 comment 3 replies
-
Hi 👋 The |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
AshleighAdams
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi 👋
The
ignore-methods
option is used to ignore mutations on method invocations and not operators. You can use the[ExcludeFromCodeCoverageAttribute]
. This ignores the scope it is placed on from mutation testing. Does that help you?