()
| 125 | |
| 126 | #[test] |
| 127 | fn build_rejects_extent_arity_mismatch() { |
| 128 | let r = ArraySchemaBuilder::new("g") |
| 129 | .dim(int64_dim("d", 10)) |
| 130 | .attr(AttrSpec::new("v", AttrType::Int64, false)) |
| 131 | .tile_extents(vec![1, 2]) |
| 132 | .build(); |
| 133 | assert!(r.is_err()); |
| 134 | } |
| 135 | } |
nothing calls this directly
no test coverage detected