Commit d111173b authored by Riegel's avatar Riegel
Browse files

Test: Adjust zip-parsing test cases

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 2 additions and 0 deletions
+2 -0
......@@ -27,6 +27,7 @@ public class ZipTest {
for (CityGmlZipEntry entry : cgmlArch.getEntries()) {
assertNotNull(entry);
assertTrue(entry.getFileName().matches("^mock[1-5].gml$"));
assertFalse(entry instanceof ErroneousEntry);
assertNotNull(entry.getModel());
}
}
......@@ -55,6 +56,7 @@ public class ZipTest {
for (CityGmlZipEntry entry : cgmlExport.getEntries()) {
assertNotNull(entry);
assertTrue(entry.getFileName().matches("^mock[1-5].gml$"));
assertFalse(entry instanceof ErroneousEntry);
assertNotNull(entry.getModel());
}
} catch (Exception e) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment