Changeset 19064 in josm for trunk/test/unit/org
- Timestamp:
- 2024-04-27T10:24:46+02:00 (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/osm/WaySegmentTest.java
r18853 r19064 37 37 assertEquals(WaySegment.forNodePair(w, n4, n1).getLowerIndex(), 5); 38 38 IllegalArgumentException iae = assertThrows(IllegalArgumentException.class, () -> WaySegment.forNodePair(w, n3, n4)); 39 assertEquals(" Node pair is not part ofway!", iae.getMessage());39 assertEquals("The node pair is not consecutive part of the way!", iae.getMessage()); 40 40 } 41 41 }
Note:
See TracChangeset
for help on using the changeset viewer.