Skip to content

Commit

Permalink
add a not found test case
Browse files Browse the repository at this point in the history
Signed-off-by: Hakan Ozler <ozler.hakan@gmail.com>
  • Loading branch information
ozlerhakan committed May 2, 2021
1 parent 13a7d6b commit 32d1215
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/com/poiji/deserialize/DeserializersTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static Iterable<Object[]> queries() {
return Arrays.asList(new Object[][]{
{"src/test/resources/employees.xlsx", unmarshallingDeserialize(), null, -1},
{"src/test/resources/employees_sheet2.xlsx", unmarshallingDeserialize(), null, 1},
{"src/test/resources/cloud-not-found.xls", unmarshallingDeserialize(), PoijiException.class, -1},
{"src/test/resources/cloud.xls", unmarshallingDeserialize(), PoijiException.class, -1},
{"src/test/resources/cloud", unmarshallingDeserialize(), PoijiException.class, -1},
});
Expand Down

0 comments on commit 32d1215

Please sign in to comment.