cargo-mutants 27.0.0

Inject bugs and see if your tests catch them
1
2
3
4
5
6
7
8
9
10
pub unsafe fn unsafe_fn() -> usize {
    42
}

#[test]
fn test_unsafe_fn() {
    unsafe {
        assert_eq!(unsafe_fn(), 42);
    }
}