summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--poi-ooxml/src/test/java/org/apache/poi/xwpf/TestNecessaryOOXMLClasses.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/poi-ooxml/src/test/java/org/apache/poi/xwpf/TestNecessaryOOXMLClasses.java b/poi-ooxml/src/test/java/org/apache/poi/xwpf/TestNecessaryOOXMLClasses.java
index 6840722c5d..047741435a 100644
--- a/poi-ooxml/src/test/java/org/apache/poi/xwpf/TestNecessaryOOXMLClasses.java
+++ b/poi-ooxml/src/test/java/org/apache/poi/xwpf/TestNecessaryOOXMLClasses.java
@@ -22,6 +22,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.junit.jupiter.api.Test;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.*;
+import org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBdoContentRunImpl;
// aim is to get these classes loaded and included in poi-ooxml-lite.jar
class TestNecessaryOOXMLClasses {
@@ -39,5 +40,7 @@ class TestNecessaryOOXMLClasses {
assertEquals(STEm.CIRCLE, STEm.Enum.forString("circle"));
STHexColorAuto stHexColorAuto = STHexColorAuto.Factory.newInstance();
assertNotNull(stHexColorAuto);
+ CTBdoContentRun bdoContentRun = CTBdoContentRun.Factory.newInstance();
+ assertNotNull(bdoContentRun);
}
}