Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add new Stryker.NET mutations #3679

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions docs/supported-mutators.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,25 @@ All Stryker versions support a variety of different mutators. We've aligned on a

## Assignment Expression

| Mutant operator | Original | Mutated |
| --------------------------------------------- | -------------------- | -------------------- |
| AdditionAssignmentNegation | `+=` | `-=` |
| SubtractionAssignmentNegation | `-=` | `+=` |
| MultiplicationAssignmentNegation | `*=` | `/=` |
| DivisionAssignmentNegation | `/=` | `*=` |
| RemainderAssignmentToMultiplicationAssignment | `%=` | `*=` |
| LeftShiftAssignmentNegation | `<<=` | `>>=` |
| RightShiftAssignmentNegation | `>>=` | `<<=` |
| BitwiseAndAssignmentNegation | `&=` | <code>&#124;=</code> |
| BitwiseOrAssignmentNegation | <code>&#124;=</code> | `&=` |
| NullCoalescingAssignmentToAndAssignment | `??=` | `&&=`¹ |
| Mutant operator | Original | Mutated |
| -------------------------------------------------- | -------------------- | -------------------- |
| AdditionAssignmentNegation | `+=` | `-=` |
| SubtractionAssignmentNegation | `-=` | `+=` |
| MultiplicationAssignmentNegation | `*=` | `/=` |
| DivisionAssignmentNegation | `/=` | `*=` |
| RemainderAssignmentToMultiplicationAssignment | `%=` | `*=` |
| LeftShiftAssignmentNegation | `<<=` | `>>=` |
| RightShiftAssignmentNegation | `>>=` | `<<=` |
| LeftShiftAssignmentToUnsignedRightShiftAssignment | `<<=` | `>>>=`² |
| RightShiftAssignmentToUnsignedRightShiftAssignment | `>>=` | `>>>=`² |
| UnsignedRightShiftAssignmentToLeftShiftAssignment | `>>>=` | `<<=`² |
| UnsignedRightShiftAssignmentToRightShiftAssignment | `>>>=` | `>>=`² |
| BitwiseAndAssignmentNegation | `&=` | <code>&#124;=</code> |
| BitwiseOrAssignmentNegation | <code>&#124;=</code> | `&=` |
| NullCoalescingAssignmentToAndAssignment | `??=` | `&&=`¹ |

- ¹: Only supported by Stryker-JS
- ²: Only supported by Stryker.NET

[🔝 Back to Top](#)

Expand Down Expand Up @@ -204,6 +209,8 @@ Due to differences in language syntax, method expressions are implemented differ
| MaxToMin | `Max()` | `Min()` |
| SumToCount | `Sum()` | `Count()` |
| CountToSum | `Count()` | `Sum()` |
| AppendToPrepend | `Append()` | `Prepend()` |
| PrependToAppend | `Prepend()` | `Append()` |

### Stryker4s

Expand Down