mirror of https://github.com/apache/poi.git
add missing CTPhoneticRun
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1886511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c23381076e
commit
1f50c10ab0
|
@ -20,6 +20,7 @@ package org.apache.poi.xssf;
|
|||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTPhoneticRun;
|
||||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRow;
|
||||
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSheetData;
|
||||
|
||||
|
@ -33,5 +34,7 @@ class TestNecessaryOOXMLClasses {
|
|||
// need to get the inner class that implements the row list class loaded
|
||||
assertTrue(sheetData.getRowList().add(row));
|
||||
assertTrue(sheetData.getRowList().iterator().hasNext());
|
||||
//important class missing in v5.0.0 poi-ooxml-lite
|
||||
CTPhoneticRun run = CTPhoneticRun.Factory.newInstance();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue