()
| 534 | |
| 535 | #[test] |
| 536 | fn empty_input() { |
| 537 | let rt = ts_runtime(); |
| 538 | assert_eq!((rt.sum_f64)(&[]), 0.0); |
| 539 | assert!((rt.min_f64)(&[]).is_infinite()); |
| 540 | assert!((rt.max_f64)(&[]).is_infinite()); |
| 541 | assert!((rt.range_filter_i64)(&[], 0, 100).is_empty()); |
| 542 | } |
| 543 | |
| 544 | #[test] |
| 545 | fn small_input() { |
nothing calls this directly
no test coverage detected