]> source.dussan.org Git - poi.git/commitdiff
try to fix issue with missing classes in poi-ooxml-schemas
authorPJ Fanning <fanningpj@apache.org>
Sat, 4 Jul 2020 22:29:13 +0000 (22:29 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sat, 4 Jul 2020 22:29:13 +0000 (22:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1879506 13f79535-47bb-0310-9956-ffa450edef68

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

index 166ded984554b15d440248a853a2e5e6fd289a35..225aaece6c30927c7707823cdc03228dc36d517f 100644 (file)
@@ -20,6 +20,7 @@ package org.apache.poi.xddf.usermodel;
 import org.apache.poi.xddf.usermodel.chart.ErrorBarType;
 import org.apache.poi.xddf.usermodel.chart.ErrorDirection;
 import org.apache.poi.xddf.usermodel.chart.ErrorValueType;
+import org.apache.poi.xddf.usermodel.chart.XDDFErrorBars;
 import org.junit.Assert;
 import org.junit.Test;
 import org.openxmlformats.schemas.drawingml.x2006.chart.*;
@@ -165,6 +166,7 @@ public class TestNecessaryOOXMLClasses {
         Assert.assertNotNull(ErrorBarType.BOTH);
         Assert.assertNotNull(ErrorValueType.CUSTOM);
         Assert.assertNotNull(ErrorDirection.X);
+        Assert.assertNotNull(new XDDFErrorBars());
         STErrBarType.Enum e9 = STErrBarType.Enum.forString("both");
         Assert.assertNotNull(e9);
         STErrValType.Enum e10 = STErrValType.Enum.forString("percentage");