(array: &str, frontier: Hlc)
| 56 | } |
| 57 | |
| 58 | fn dummy_snap(array: &str, frontier: Hlc) -> TileSnapshot { |
| 59 | TileSnapshot { |
| 60 | array: array.into(), |
| 61 | coord_range: CoordRange { |
| 62 | lo: vec![CoordValue::Int64(0)], |
| 63 | hi: vec![CoordValue::Int64(100)], |
| 64 | }, |
| 65 | tile_blob: vec![0xCC; 4], |
| 66 | snapshot_hlc: frontier, |
| 67 | schema_hlc: hlc(1, 1), |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // ── Routing property tests ──────────────────────────────────────────────────── |
| 72 |
no test coverage detected