cargo-mutants 27.0.0

Inject bugs and see if your tests catch them
1
2
3
4
5
6
7
8
static SHOULD_BE_TRUE: bool = 3 == (2 + 1);

mod test {
    #[test]
    fn static_expression_evaluated() {
        assert!(super::SHOULD_BE_TRUE);
    }
}