From 99a446828ddf9c36e0d93217bebe1e22a7f221f5 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 28 Aug 2018 01:38:34 +0000 Subject: [PATCH] add missing classes to poi-ooxml-schema.jar git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839384 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/xddf/usermodel/TestNecessaryOOXMLClasses.java | 9 +++++++++ 1 file changed, 9 insertions(+) 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 55f767c75f..74ec1bb6cf 100644 --- a/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java +++ b/src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java @@ -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); } }