Changeset 32642 in osm for applications/editors/josm/plugins/mapillary/test
- Timestamp:
- 2016-07-12T17:28:07+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/test
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java
r32593 r32642 3 3 4 4 import static org.junit.Assert.assertEquals; 5 import static org.junit.Assert.assertFalse; 5 6 import static org.junit.Assert.assertTrue; 6 7 … … 91 92 } 92 93 94 @Test 95 public void testFileFilterAgainstEmptyFile() throws URISyntaxException { 96 File f = new File(ImageUtil.class.getResource("/zeroByteFile").toURI()); 97 assertFalse(ImageUtil.IMAGE_FILE_FILTER.accept(f)); 98 } 99 93 100 }
Note:
See TracChangeset
for help on using the changeset viewer.