()
| 166 | |
| 167 | #[test] |
| 168 | fn normalize_int_lo_maps_to_zero() { |
| 169 | let s = schema_2d(); |
| 170 | let n = normalize_coord(&s, &[CoordValue::Int64(0), CoordValue::Int64(0)], 8).unwrap(); |
| 171 | assert_eq!(n, vec![0, 0]); |
| 172 | } |
| 173 | |
| 174 | #[test] |
| 175 | fn normalize_int_hi_maps_to_max() { |
nothing calls this directly
no test coverage detected