Changeset 13897 in josm for trunk/test
- Timestamp:
- 2018-06-07T02:05:53+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/imagery/WMSEndpointTileSourceTest.java
r13872 r13897 3 3 4 4 import static org.junit.Assert.assertEquals; 5 import static org.junit.Assert.assertTrue; 5 6 6 7 import java.nio.file.Files; … … 126 127 assertEquals("b8e36d51-119a-423b-b156-d744d54123d5", wmsImageryInfo.getCustomHttpHeaders().get("X-WAAPI-TOKEN")); 127 128 assertEquals("b8e36d51-119a-423b-b156-d744d54123d5", tileSource.getHeaders().get("X-WAAPI-TOKEN")); 128 assert Equals(true,wmsImageryInfo.isGeoreferenceValid());129 assertTrue(wmsImageryInfo.isGeoreferenceValid()); 129 130 tileServer.verify( 130 131 WireMock.getRequestedFor(WireMock.urlEqualTo("/capabilities?SERVICE=WMS&REQUEST=GetCapabilities")) … … 143 144 + "BBOX=20037506.6204108,-60112521.5836107,60112521.5836107,-20037506.6204108", 144 145 tileSource.getTileUrl(1, 1, 1)); 145 146 146 } 147 147 }
Note:
See TracChangeset
for help on using the changeset viewer.