()
| 543 | |
| 544 | #[test] |
| 545 | fn small_input() { |
| 546 | let rt = ts_runtime(); |
| 547 | assert!(((rt.sum_f64)(&[1.0, 2.0, 3.0]) - 6.0).abs() < f64::EPSILON); |
| 548 | assert!(((rt.min_f64)(&[3.0, 1.0, 2.0]) - 1.0).abs() < f64::EPSILON); |
| 549 | assert!(((rt.max_f64)(&[1.0, 3.0, 2.0]) - 3.0).abs() < f64::EPSILON); |
| 550 | } |
| 551 | } |
nothing calls this directly
no test coverage detected