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:
PJ Fanning 2022-08-30 11:26:20 +00:00
parent 30a0a4362a
commit 59f51987eb
2 changed files with 12 additions and 0 deletions

View File

@ -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.