]> source.dussan.org Git - poi.git/commitdiff
add some missing classes to poi-ooxml-schemas
authorPJ Fanning <fanningpj@apache.org>
Thu, 25 Jul 2019 17:04:23 +0000 (17:04 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 25 Jul 2019 17:04:23 +0000 (17:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1863752 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java

index 6cbf24ab6f36559476b1d795df59a338bf39a0b4..1ad48ef71fcdb958dad588dedd56a44632c4938e 100644 (file)
@@ -91,6 +91,26 @@ public class TestNecessaryOOXMLClasses {
         Assert.assertNotNull(stDashBlanksAs);
         CTDispBlanksAs ctDashBlanksAs = CTDispBlanksAs.Factory.newInstance();
         Assert.assertNotNull(ctDashBlanksAs);
+        CTAreaChart ctAreaChart = CTAreaChart.Factory.newInstance();
+        Assert.assertNotNull(ctAreaChart);
+        CTArea3DChart ctArea3DChart = CTArea3DChart.Factory.newInstance();
+        Assert.assertNotNull(ctArea3DChart);
+        CTSurfaceChart ctSurfaceChart = CTSurfaceChart.Factory.newInstance();
+        Assert.assertNotNull(ctSurfaceChart);
+        CTBar3DChart ctBar3DChart = CTBar3DChart.Factory.newInstance();
+        Assert.assertNotNull(ctBar3DChart);
+        CTLine3DChart ctLine3DChart = CTLine3DChart.Factory.newInstance();
+        Assert.assertNotNull(ctLine3DChart);
+        CTPie3DChart ctPie3DChart = CTPie3DChart.Factory.newInstance();
+        Assert.assertNotNull(ctPie3DChart);
+        CTSurface3DChart ctSurface3DChart = CTSurface3DChart.Factory.newInstance();
+        Assert.assertNotNull(ctSurface3DChart);
+        CTAreaSer ctAreaSer = CTAreaSer.Factory.newInstance();
+        Assert.assertNotNull(ctAreaSer);
+        CTSurfaceSer ctSurfaceSer = CTSurfaceSer.Factory.newInstance();
+        Assert.assertNotNull(ctSurfaceSer);
+        CTView3D ctView3D = CTView3D.Factory.newInstance();
+        Assert.assertNotNull(ctView3D);
 
         STLblAlgn.Enum e1 = STLblAlgn.Enum.forString("ctr");
         Assert.assertNotNull(e1);
@@ -106,6 +126,9 @@ public class TestNecessaryOOXMLClasses {
         Assert.assertNotNull(e6);
         STDispBlanksAs.Enum e7 = STDispBlanksAs.Enum.forString("span");
         Assert.assertNotNull(e7);
+        STShape.Enum e8 = STShape.Enum.forString("cone");
+        Assert.assertNotNull(e8);
+
 
         CTTextBulletTypefaceFollowText ctTextBulletTypefaceFollowText = CTTextBulletTypefaceFollowText.Factory.newInstance();
         Assert.assertNotNull(ctTextBulletTypefaceFollowText);
@@ -115,6 +138,22 @@ public class TestNecessaryOOXMLClasses {
         Assert.assertNotNull(ctTextBulletColorFollowText);
         CTTextBlipBullet ctTextBlipBullet = CTTextBlipBullet.Factory.newInstance();
         Assert.assertNotNull(ctTextBlipBullet);
+        CTRotX ctRotX = CTRotX.Factory.newInstance();
+        Assert.assertNotNull(ctRotX);
+        CTRotX ctRotY = CTRotX.Factory.newInstance();
+        Assert.assertNotNull(ctRotY);
+        CTPerspective ctPerspective = CTPerspective.Factory.newInstance();
+        Assert.assertNotNull(ctPerspective);
+        CTDepthPercent ctDepthPercent = CTDepthPercent.Factory.newInstance();
+        Assert.assertNotNull(ctDepthPercent);
+        CTHPercent ctHPercent = CTHPercent.Factory.newInstance();
+        Assert.assertNotNull(ctHPercent);
+        CTShape ctShape = CTShape.Factory.newInstance();
+        Assert.assertNotNull(ctShape);
+        CTOverlap ctOverlap = CTOverlap.Factory.newInstance();
+        Assert.assertNotNull(ctOverlap);
+        CTFirstSliceAng ctFirstSliceAng = CTFirstSliceAng.Factory.newInstance();
+        Assert.assertNotNull(ctFirstSliceAng);
     }
 
 }