add CTEm class to poi-ooxml-schemas

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1837197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-07-31 23:45:18 +00:00
parent d2594d3207
commit 56facac036
1 changed files with 7 additions and 0 deletions

View File

@ -19,7 +19,9 @@ package org.apache.poi.xwpf;
import org.junit.Assert;
import org.junit.Test;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTEm;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblLayoutType;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STEm;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STTblLayoutType;
// aim is to get these classes loaded and included in poi-ooxml-schemas.jar
@ -31,5 +33,10 @@ public class TestNecessaryOOXMLClasses {
Assert.assertNotNull(ctTblLayoutType);
STTblLayoutType stTblLayoutType = STTblLayoutType.Factory.newInstance();
Assert.assertNotNull(stTblLayoutType);
CTEm ctEm = CTEm.Factory.newInstance();
Assert.assertNotNull(ctEm);
STEm stEm = STEm.Factory.newInstance();
Assert.assertNotNull(stEm);
Assert.assertEquals(STEm.CIRCLE, STEm.Enum.forString("circle"));
}
}