Changeset 16968 in josm for trunk/test/unit
- Timestamp:
- 2020-08-29T17:44:57+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/command/MoveCommandTest.java
r14120 r16968 77 77 assertEquals("east", 1, moveCommand.getOffset().east(), 0.0001); 78 78 assertEquals("north", 2, moveCommand.getOffset().north(), 0.0001); 79 assertEquals("distance", 2.236068, moveCommand.getDistance(n -> true), 0.0001); 79 80 } 80 81 … … 89 90 assertEquals("east", 4, testData.existingNode.getEastNorth().east(), 0.0001); 90 91 assertEquals("north", 9, testData.existingNode.getEastNorth().north(), 0.0001); 92 assertEquals("distance", 2.236068, command.getDistance(n -> true), 0.0001); 91 93 } 92 94
Note:
See TracChangeset
for help on using the changeset viewer.