Changeset 12350 in josm for trunk/test/unit
- Timestamp:
- 2017-06-09T00:03:23+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/command/SelectCommandTest.java
r10758 r12350 123 123 @Test 124 124 public void testGetParticipatingPrimitives() { 125 SelectCommand command = new SelectCommand(Arrays.asList(testData.existingNode , testData.existingWay));125 SelectCommand command = new SelectCommand(Arrays.asList(testData.existingNode)); 126 126 command.executeCommand(); 127 assertArrayEquals(new Object[] { }, command.getParticipatingPrimitives().toArray());127 assertArrayEquals(new Object[] { testData.existingNode }, command.getParticipatingPrimitives().toArray()); 128 128 } 129 129
Note:
See TracChangeset
for help on using the changeset viewer.