Changeset 31347 in osm for applications/editors/josm/plugins/mapillary/test
- Timestamp:
- 2015-07-06T23:24:31+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/test
- Files:
-
- 5 added
- 1 moved
-
data/preferences (added)
-
data/preferences/preferences.xml (added)
-
unit/org/openstreetmap/josm/plugins/mapillary/ImportedImageTest.java (moved) (moved from applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java ) (3 diffs)
-
unit/org/openstreetmap/josm/plugins/mapillary/MapillarySequenceDownloadThreadTest.java (added)
-
unit/org/openstreetmap/josm/plugins/mapillary/util (added)
-
unit/org/openstreetmap/josm/plugins/mapillary/util/TestUtil.java (added)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportedImageTest.java
r31346 r31347 1 1 package org.openstreetmap.josm.plugins.mapillary; 2 3 import static org.junit.Assert.*;4 2 5 3 import java.io.IOException; … … 8 6 import org.junit.Test; 9 7 10 public class ImportTest { 8 public class ImportedImageTest { 11 9 12 10 @Before … … 18 16 19 17 @Test(expected=IllegalArgumentException.class) 20 public void test() throws IOException { 18 public void testNullFile() throws IOException { 21 19 MapillaryImportedImage img = new MapillaryImportedImage(0,0,0, null); 22 20 img.getImage(); 23 21 } 24 25 22 }
Note:
See TracChangeset
for help on using the changeset viewer.
