Changeset 31797 in osm for applications/editors/josm/plugins/mapillary/test/unit
- Timestamp:
- 2015-12-04T17:55:52+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 5 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java
r31500 r31797 2 2 3 3 import static org.junit.Assert.assertEquals; 4 import static org.junit.Assert.assertFalse; 5 import static org.junit.Assert.assertTrue; 4 6 import static org.junit.Assert.fail; 5 7 … … 266 268 267 269 this.record.addCommand(cmd1); 268 assertEquals(false, MapillaryLayer.getInstance().getData().getImages() 269 .contains(this.img1)); 270 assertFalse(MapillaryLayer.getInstance().getData().getImages().contains(this.img1)); 270 271 assertEquals(null, this.img2.previous()); 271 272 this.record.undo(); 272 assertEquals(true, MapillaryLayer.getInstance().getData().getImages() 273 .contains(this.img1)); 273 assertTrue(MapillaryLayer.getInstance().getData().getImages().contains(this.img1)); 274 274 this.record.redo(); 275 275 this.record.addCommand(cmd2); -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/io/download/MapillarySequenceDownloadThreadTest.java
r31796 r31797 2 2 * 3 3 */ 4 package org.openstreetmap.josm.plugins.mapillary.download s;4 package org.openstreetmap.josm.plugins.mapillary.io.download; 5 5 6 6 import static org.junit.Assert.assertTrue;
Note:
See TracChangeset
for help on using the changeset viewer.