giraffe-fsharp / Giraffe

A native functional ASP.NET Core web framework for F# developers.
https://giraffe.wiki
Apache License 2.0
2.13k stars 266 forks source link

Add mutation testing #605

Open 64J0 opened 4 months ago

64J0 commented 4 months ago

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.