Changeset 31341 in osm for applications/editors/josm/plugins/mapillary/test
- Timestamp:
- 2015-07-06T11:47:31+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java
r31314 r31341 2 2 3 3 import static org.junit.Assert.*; 4 5 import java.io.IOException; 4 6 5 7 import org.junit.Before; … … 14 16 } 15 17 16 @Test 17 public void test() { 18 MapillaryImportedImage img = new MapillaryImportedImage(0,0,0, null); 19 assert(true); 20 } 18 19 @Test(expected=IllegalArgumentException.class) 20 public void test() throws IOException { 21 MapillaryImportedImage img = new MapillaryImportedImage(0,0,0, null); 22 img.getImage(); 23 } 21 24 22 25 }
Note:
See TracChangeset
for help on using the changeset viewer.