()
| 180 | |
| 181 | #[test] |
| 182 | fn normalize_rejects_out_of_domain() { |
| 183 | let s = schema_2d(); |
| 184 | let r = normalize_coord(&s, &[CoordValue::Int64(101), CoordValue::Int64(0)], 8); |
| 185 | assert!(r.is_err()); |
| 186 | } |
| 187 | |
| 188 | #[test] |
| 189 | fn normalize_rejects_arity_mismatch() { |
nothing calls this directly
no test coverage detected