Changeset 16916 in josm for trunk/test/unit
- Timestamp:
- 2020-08-23T17:23:30+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java
r16913 r16916 64 64 private final ImageryInfo testLotsOfLayers = getImagery(TestUtils.getTestDataRoot() + "wmts/getCapabilities-lots-of-layers.xml"); 65 65 private final ImageryInfo testDuplicateTags = getImagery(TestUtils.getTestDataRoot() + "wmts/bug12573-wmts-identifier.xml"); 66 private final ImageryInfo testMissingStyleIdentifer = getImagery(TestUtils.getTestDataRoot() + "wmts/bug12573-wmts-missing-style-identifier.xml"); 66 private final ImageryInfo testMissingStyleIdentifier = getImagery(TestUtils.getTestDataRoot() + 67 "wmts/bug12573-wmts-missing-style-identifier.xml"); 67 68 private final ImageryInfo testMultipleTileMatrixForLayer = getImagery(TestUtils.getTestDataRoot() + 68 69 "wmts/bug13975-multiple-tile-matrices-for-one-layer-projection.xml"); … … 306 307 public void testParserForMissingStyleIdentifier() throws Exception { 307 308 ProjectionRegistry.setProjection(Projections.getProjectionByCode("EPSG:3857")); 308 WMTSTileSource testSource = new WMTSTileSource(testMissingStyleIdentif er);309 WMTSTileSource testSource = new WMTSTileSource(testMissingStyleIdentifier); 309 310 testSource.initProjection(ProjectionRegistry.getProjection()); 310 311 }
Note:
See TracChangeset
for help on using the changeset viewer.