()
| 187 | |
| 188 | #[test] |
| 189 | fn normalize_rejects_arity_mismatch() { |
| 190 | let s = schema_2d(); |
| 191 | let r = normalize_coord(&s, &[CoordValue::Int64(0)], 8); |
| 192 | assert!(r.is_err()); |
| 193 | } |
| 194 | |
| 195 | #[test] |
| 196 | fn normalize_rejects_type_mismatch() { |
nothing calls this directly
no test coverage detected