From: PJ Fanning Date: Thu, 25 Jul 2019 17:26:21 +0000 (+0000) Subject: add some missing classes to poi-ooxml-schemas X-Git-Tag: REL_4_1_1~50 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=958f72caaea9a06ce60dddecfe3af6d611be0b63;p=poi.git add some missing classes to poi-ooxml-schemas git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1863753 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java b/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java index 1ad48ef71f..e83f1679f7 100644 --- a/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java +++ b/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java @@ -111,6 +111,8 @@ public class TestNecessaryOOXMLClasses { Assert.assertNotNull(ctSurfaceSer); CTView3D ctView3D = CTView3D.Factory.newInstance(); Assert.assertNotNull(ctView3D); + STShape stShape = STShape.Factory.newInstance(); + Assert.assertNotNull(stShape); STLblAlgn.Enum e1 = STLblAlgn.Enum.forString("ctr"); Assert.assertNotNull(e1); @@ -140,7 +142,7 @@ public class TestNecessaryOOXMLClasses { Assert.assertNotNull(ctTextBlipBullet); CTRotX ctRotX = CTRotX.Factory.newInstance(); Assert.assertNotNull(ctRotX); - CTRotX ctRotY = CTRotX.Factory.newInstance(); + CTRotY ctRotY = CTRotY.Factory.newInstance(); Assert.assertNotNull(ctRotY); CTPerspective ctPerspective = CTPerspective.Factory.newInstance(); Assert.assertNotNull(ctPerspective);