-
Notifications
You must be signed in to change notification settings - Fork 731
Description
I've been playing around with mutation testing of Fluent Assertions using Stryker.NET.
From their docs
What is mutation testing?
Bugs, or mutants, are automatically inserted into your production code. Your tests are ran for each mutant. If your tests fail then the mutant is killed. If your tests passed, the mutant survived. The higher the percentage of mutants killed, the more effective your tests are.
It gives a nice html report of all found mutations making it easy to see what mutations survived our test suite.
mutation-report.zip
I've used this to identify and add some missing unit tests.
I didn't find any bugs in the library, but found some missing extension methods for DateTimeOffset.
If anyone wants to chime on improving the test suite, this is a great tool.