()
| 314 | |
| 315 | #[test] |
| 316 | fn next_interval_minimum_1s() { |
| 317 | let reg = AlertRegistry::new(); |
| 318 | let mut a = make_alert("fast"); |
| 319 | a.window_ms = 500; |
| 320 | reg.register(a); |
| 321 | assert_eq!(next_eval_interval_ms(®), 1_000); |
| 322 | } |
| 323 | |
| 324 | #[test] |
| 325 | fn next_interval_default_1min() { |
nothing calls this directly
no test coverage detected