pptx test

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1904334 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-09-29 10:53:01 +00:00
parent 98705b80d4
commit 47e49a3a16
2 changed files with 12 additions and 0 deletions

View File

@ -1126,6 +1126,18 @@ class TestXSLFBugs {
}
}
@Test
void loadPptxWithArtisticEffect() throws IOException {
try (XMLSlideShow slideShowModel = openSampleDocument("ArtisticEffectSample.pptx")) {
for (XSLFSlide slide : slideShowModel.getSlides()) {
assertNotNull(slide);
for (XSLFShape shape : slide.getShapes()) {
assertNotNull(shape);
}
}
}
}
@Test
void identicalGradientStopsBug() throws IOException {

Binary file not shown.