()
| 173 | |
| 174 | #[test] |
| 175 | fn normalize_int_hi_maps_to_max() { |
| 176 | let s = schema_2d(); |
| 177 | let n = normalize_coord(&s, &[CoordValue::Int64(100), CoordValue::Int64(100)], 8).unwrap(); |
| 178 | assert_eq!(n, vec![255, 255]); |
| 179 | } |
| 180 | |
| 181 | #[test] |
| 182 | fn normalize_rejects_out_of_domain() { |
nothing calls this directly
no test coverage detected