()
| 383 | |
| 384 | #[test] |
| 385 | fn empty_aggregate() { |
| 386 | let result = aggregate_f64(&[]); |
| 387 | assert_eq!(result.count, 0); |
| 388 | assert!(result.min.is_nan()); |
| 389 | } |
| 390 | |
| 391 | #[test] |
| 392 | fn simple_aggregate() { |
nothing calls this directly
no test coverage detected