Changeset 35183 in osm for applications/editors/josm/plugins/opendata
- Timestamp:
- 2019-10-10T17:40:06+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/NonRegFunctionalTests.java
r34153 r35183 43 43 assertTrue("Node without coordinate found for "+context, latlon != null); 44 44 assertTrue("Node with invalid coordinate ("+latlon+") found for "+context, latlon.isValid()); 45 assertFalse("Node with outside world coordinate ("+latlon+") found for "+context, latlon.isOutSideWorld());45 assertFalse("Node with outside world coordinate ("+latlon+") found for "+context, n.isOutSideWorld()); 46 46 } 47 47 // and no empty ways -
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/geographic/ShpReaderTest.java
r34997 r35183 59 59 assertNotNull(n.toString(), n.getCoor()); 60 60 assertFalse(n.toString(), LatLon.ZERO.equals(n.getCoor())); 61 assertFalse(n.toString(), n. getCoor().isOutSideWorld());61 assertFalse(n.toString(), n.isOutSideWorld()); 62 62 assertTrue(n.toString(), n.getCoor().isValid()); 63 63 }
Note:
See TracChangeset
for help on using the changeset viewer.