Changeset 32901 in osm for applications/editors/josm/plugins/opendata
- Timestamp:
- 2016-09-03T02:33:09+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/archive/ZipReaderTest.java
r32360 r32901 4 4 import java.io.File; 5 5 import java.io.FileInputStream; 6 import java.io.IOException;7 6 import java.io.InputStream; 8 7 import java.nio.file.Path; 9 8 import java.util.Map.Entry; 10 11 import javax.xml.bind.JAXBException;12 import javax.xml.stream.FactoryConfigurationError;13 import javax.xml.stream.XMLStreamException;14 9 15 10 import org.junit.Rule; … … 33 28 /** 34 29 * Test for various zip files reading 35 * @throws IOException if an error occurs during reading30 * @throws Exception if an error occurs during reading 36 31 */ 37 32 @Test 38 public void testReadZipFiles() throws IOException, XMLStreamException, FactoryConfigurationError, JAXBException {33 public void testReadZipFiles() throws Exception { 39 34 for (Path p : NonRegFunctionalTests.listDataFiles("zip")) { 40 35 File zipfile = p.toFile();
Note:
See TracChangeset
for help on using the changeset viewer.