try to get more generated classes into poi-ooxml-schemas

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1835687 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-07-11 23:24:27 +00:00
parent 8c4833a108
commit b167994f49
2 changed files with 51 additions and 0 deletions

View File

@ -69,8 +69,24 @@ public class TestNecessaryOOXMLClasses {
Assert.assertNotNull(ctTableStyleTextStyle);
CTHeaderFooter ctHeaderFooter = CTHeaderFooter.Factory.newInstance();
Assert.assertNotNull(ctHeaderFooter);
CTMarkerSize ctMarkerSize = CTMarkerSize.Factory.newInstance();
Assert.assertNotNull(ctMarkerSize);
CTDLbls ctdLbls = CTDLbls.Factory.newInstance();
Assert.assertNotNull(ctdLbls);
CTMarker ctMarker = CTMarker.Factory.newInstance();
Assert.assertNotNull(ctMarker);
STMarkerStyle stMarkerStyle = STMarkerStyle.Factory.newInstance();
Assert.assertNotNull(stMarkerStyle);
CTMarkerStyle ctMarkerStyle = CTMarkerStyle.Factory.newInstance();
Assert.assertNotNull(ctMarkerStyle);
CTExternalData ctExternalData = CTExternalData.Factory.newInstance();
Assert.assertNotNull(ctExternalData);
CTAxisUnit ctAxisUnit = CTAxisUnit.Factory.newInstance();
Assert.assertNotNull(ctAxisUnit);
CTLblAlgn ctLblAlgn = CTLblAlgn.Factory.newInstance();
Assert.assertNotNull(ctLblAlgn);
CTDashStopList ctDashStopList = CTDashStopList.Factory.newInstance();
Assert.assertNotNull(ctDashStopList);
STLblAlgn.Enum e1 = STLblAlgn.Enum.forString("ctr");
Assert.assertNotNull(e1);

View File

@ -0,0 +1,35 @@
/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
package org.apache.poi.xwpf;
import org.junit.Assert;
import org.junit.Test;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblLayoutType;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STTblLayoutType;
// aim is to get these classes loaded and included in poi-ooxml-schemas.jar
public class TestNecessaryOOXMLClasses {
@Test
public void testProblemClasses() {
CTTblLayoutType ctTblLayoutType = CTTblLayoutType.Factory.newInstance();
Assert.assertNotNull(ctTblLayoutType);
STTblLayoutType stTblLayoutType = STTblLayoutType.Factory.newInstance();
Assert.assertNotNull(stTblLayoutType);
}
}