Description:
TL; DR: Mutation testing introduces changes to your code, then runs your unit tests against the changed code. It is expected that your unit tests will now fail. If they don't fail, it might indicate your tests do not sufficiently cover the code.
--- https://stryker-mutator.io/docs/
We can add mutation tests to check the unit tests quality.
Description:
We can add mutation tests to check the unit tests quality.