Changeset 11874 in josm for trunk/test/unit
- Timestamp:
- 2017-04-09T17:24:39+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/command/SequenceCommandTest.java
r11734 r11874 122 122 FailingCommand command2 = new FailingCommand(); 123 123 TestCommand command3 = new TestCommand(null); 124 SequenceCommand command = new SequenceCommand("seq", Arrays.<Command>asList(command1, command2, command3)); 125 command.continueOnError = true; 124 SequenceCommand command = new SequenceCommand("seq", Arrays.<Command>asList(command1, command2, command3), true); 126 125 assertTrue(command.executeCommand()); 127 126 assertTrue(command1.executed);
Note:
See TracChangeset
for help on using the changeset viewer.