diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 9d34da5b1..ea298f929 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,8 @@ + 49325 - Ensure that CTPhoneticPr is included in poi-ooxml jar + 49191 - Fixed tests failing in non-english locales 48432 - Support for XSSF themes 49244 - Support for data validation for OOXML format 49066 - Worksheet/cell formatting, with view and HTML converter diff --git a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFBugs.java b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFBugs.java index 7d3df7427..f521cb53b 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFBugs.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFBugs.java @@ -26,6 +26,7 @@ import org.apache.poi.openxml4j.opc.PackagingURIHelper; import org.apache.poi.ss.usermodel.BaseTestBugzillaIssues; import org.apache.poi.xssf.XSSFITestDataProvider; import org.apache.poi.xssf.XSSFTestDataSamples; +import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTWorksheet; public final class TestXSSFBugs extends BaseTestBugzillaIssues { @@ -148,4 +149,13 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues { public void test49020() throws Exception { XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("BrNotClosed.xlsx"); } + + /** + * ensure that CTPhoneticPr is loaded by the ooxml test suite so that it is included in poi-ooxml-schemas + */ + public void test49325() throws Exception { + XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("49325.xlsx"); + CTWorksheet sh = wb.getSheetAt(0).getCTWorksheet(); + assertNotNull(sh.getPhoneticPr()); + } }