(self)
| 95 | assert_combined_tile_ids_equal(expected, actual) |
| 96 | |
| 97 | def test_single_dataset(self): |
| 98 | ds = create_test_data(0) |
| 99 | input = [ds] |
| 100 | |
| 101 | expected = {(0,): ds} |
| 102 | actual: dict[tuple[int, ...], Dataset] = _infer_concat_order_from_positions( |
| 103 | input |
| 104 | ) |
| 105 | assert_combined_tile_ids_equal(expected, actual) |
| 106 | |
| 107 | def test_redundant_nesting(self): |
| 108 | ds = create_test_data |
nothing calls this directly
no test coverage detected