cargo-mutants 27.1.0

Inject bugs and see if your tests catch them
1
2
3
4
5
6
7
8
pub fn triple(a: usize) -> usize {
    a * 3
}

#[test]
fn triple_2() {
    assert_eq!(triple(2), 6);
}