()
| 294 | |
| 295 | #[test] |
| 296 | fn tile_snapshot_roundtrip() { |
| 297 | let s = snapshot(256); |
| 298 | let bytes = encode_snapshot(&s).unwrap(); |
| 299 | let back = decode_snapshot(&bytes).unwrap(); |
| 300 | assert_eq!(s, back); |
| 301 | } |
| 302 | |
| 303 | #[test] |
| 304 | fn split_then_assemble_roundtrip() { |
nothing calls this directly
no test coverage detected