Changeset 13878 in josm for trunk/test/unit/org
- Timestamp:
- 2018-05-31T00:51:20+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/imagery/WMSImageryTest.java
r13870 r13878 91 91 ); 92 92 WMSImagery wms = new WMSImagery(tileServer.url("any")); 93 assertEquals("http://wms.hgis.cartomatic.pl/topo/3857/m25k ", wms.buildRootUrl());93 assertEquals("http://wms.hgis.cartomatic.pl/topo/3857/m25k?", wms.buildRootUrl()); 94 94 assertEquals("wms.hgis.cartomatic.pl", wms.getLayers().get(0).getName()); 95 assertEquals("http://wms.hgis.cartomatic.pl/topo/3857/m25k FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&"95 assertEquals("http://wms.hgis.cartomatic.pl/topo/3857/m25k?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&" 96 96 + "LAYERS=wms.hgis.cartomatic.pl&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}", 97 97 wms.buildGetMapUrl(wms.getLayers(), (List<String>) null, true));
Note:
See TracChangeset
for help on using the changeset viewer.