]> source.dussan.org Git - poi.git/commitdiff
add missing classes to poi-ooxml-schema.jar
authorPJ Fanning <fanningpj@apache.org>
Tue, 28 Aug 2018 01:38:34 +0000 (01:38 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 28 Aug 2018 01:38:34 +0000 (01:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839384 13f79535-47bb-0310-9956-ffa450edef68

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

index 55f767c75f6a5f5bed3887151a24d979ddbfe80c..74ec1bb6cf441d6a61638562b4b47337152af326 100644 (file)
@@ -100,6 +100,15 @@ public class TestNecessaryOOXMLClasses {
         Assert.assertNotNull(e5);
         STMarkerStyle.Enum e6 = STMarkerStyle.Enum.forString("circle");
         Assert.assertNotNull(e6);
+
+        CTTextBulletTypefaceFollowText ctTextBulletTypefaceFollowText = CTTextBulletTypefaceFollowText.Factory.newInstance();
+        Assert.assertNotNull(ctTextBulletTypefaceFollowText);
+        CTTextBulletSizeFollowText ctTextBulletSizeFollowText = CTTextBulletSizeFollowText.Factory.newInstance();
+        Assert.assertNotNull(ctTextBulletSizeFollowText);
+        CTTextBulletColorFollowText ctTextBulletColorFollowText = CTTextBulletColorFollowText.Factory.newInstance();
+        Assert.assertNotNull(ctTextBulletColorFollowText);
+        CTTextBlipBullet ctTextBlipBullet = CTTextBlipBullet.Factory.newInstance();
+        Assert.assertNotNull(ctTextBlipBullet);
     }
 
 }