blob: 81c1fcec078ed9ec7c9d23697d8be7a385fcf0d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# cov-mark
Verify that your tests exercise the conditions you think they are exercising
```rust
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](https://docs.rs/cov-mark) for details
|