matklad/cov-mark

66

stars

38

commits

Rust

primary language

Oct 28, 2025

updated

README

cov-mark

Verify that your tests exercise the conditions you think they are exercising

fn safe_divide(dividend: u32, divisor: u32) -> u32 {
    if divisor == 0 {
        cov_mark::hit!(save_divide_zero);
        return 0;
    }
    dividend / divisor
}

#[test]
fn test_safe_divide_by_zero() {
    cov_mark::check!(save_divide_zero);
    assert_eq!(safe_divide(92, 0), 0);
}

See the docs for details

Contributors

matklad

13 commits

sftse

12 commits

bors[bot]

7 commits

nagisa

6 commits

matklad/cov-mark

66

stars

38

commits

Rust

primary language

Oct 28, 2025

updated

README

cov-mark

Verify that your tests exercise the conditions you think they are exercising

fn safe_divide(dividend: u32, divisor: u32) -> u32 {
    if divisor == 0 {
        cov_mark::hit!(save_divide_zero);
        return 0;
    }
    dividend / divisor
}

#[test]
fn test_safe_divide_by_zero() {
    cov_mark::check!(save_divide_zero);
    assert_eq!(safe_divide(92, 0), 0);
}

See the docs for details

Contributors

matklad

13 commits

sftse

12 commits

bors[bot]

7 commits

nagisa

6 commits

Languages

Rust

100.0%