cargo-mutants 27.0.0

Inject bugs and see if your tests catch them
/// This function is only built for tests so shouldn't be mutated.
#[cfg(test)]
fn outer_test_helper() {
    panic!()
}

fn returns_unit(a: &mut u32) {
    *a += 1;
}

/// Can be mutated to return default (0).
fn returns_42u32() -> u32 {
    42
}

/// Can be mutated to return bool::default.
fn divisible_by_three(a: u32) -> bool {
    a % 3 == 0
}

/// Return `s` repeated twice.
///
/// ```
/// assert_eq!(cargo_mutants_testdata_well_tested::simple_fns::double_string("cat"), "catcat");
/// ```
pub fn double_string(s: &str) -> String {
    let mut r = s.to_owned();
    r.push_str(s);
    r
}

#[cfg(test)]
mod tests {
    use super::*;

    /// A test helper function: it shouldn't be mutated because it's inside a
    /// `#[cfg(tests)]` mod.
    fn test_helper() -> usize {
        42
    }

    #[test]
    fn use_test_helper() {
        let result = 2 + test_helper();
        assert_eq!(result, 44);
    }

    #[test]
    fn main_tests() {
        assert_eq!(returns_42u32(), 42);

        assert!(divisible_by_three(0));
        assert!(divisible_by_three(9));
        assert!(!divisible_by_three(20));

        let mut a = 0;
        returns_unit(&mut a);
        assert_eq!(a, 1);
    }
}