mirror of https://github.com/apache/poi.git
test for TIKA-2605
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903776 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
30a0a4362a
commit
59f51987eb
|
@ -1108,4 +1108,16 @@ class TestXSLFBugs {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void tika2605() throws IOException {
|
||||
try (XMLSlideShow slideShowModel = openSampleDocument("tika-2605.pptx")) {
|
||||
for (XSLFSlide slide : slideShowModel.getSlides()) {
|
||||
assertNotNull(slide);
|
||||
for (XSLFShape shape : slide.getShapes()) {
|
||||
assertNotNull(shape);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue