()
| 236 | |
| 237 | #[test] |
| 238 | fn empty_tile_roundtrip() { |
| 239 | let s = schema(); |
| 240 | let tile = SparseTile::empty(&s); |
| 241 | let out = roundtrip(&tile); |
| 242 | assert_eq!(out.surrogates, tile.surrogates); |
| 243 | assert_eq!(out.row_kinds, tile.row_kinds); |
| 244 | } |
| 245 | |
| 246 | #[test] |
| 247 | fn small_tile_roundtrip() { |