Changeset 19322 in josm
- Timestamp:
- 2025-02-14T12:02:08+01:00 (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/coor/LatLonTest.java
r18870 r19322 212 212 213 213 /** 214 * Test {@link LatLon#isOutSideWorld}215 * @deprecated to remove216 */217 @Test218 @Deprecated219 void testIsOutSideWorld() {220 assertFalse(LatLon.ZERO.isOutSideWorld());221 assertTrue(LatLon.NORTH_POLE.isOutSideWorld());222 assertTrue(LatLon.SOUTH_POLE.isOutSideWorld());223 assertTrue(new LatLon(-181, 0).isOutSideWorld());224 assertTrue(new LatLon(181, 0).isOutSideWorld());225 }226 227 /**228 214 * Test {@link LatLon#isValid} 229 215 */
Note:
See TracChangeset
for help on using the changeset viewer.