Verify that your tests exercise the conditions you think they are exercising
```rust fn safedivide(dividend: u32, divisor: u32) -> u32 { if divisor == 0 { covmark::hit!(savedividezero); return 0; } dividend / divisor }
fn testsafedividebyzero() { covmark::check!(savedividezero); asserteq!(safe_divide(92, 0), 0); } ```
See the docs for details