]> source.dussan.org Git - poi.git/commitdiff
Ensure that CTPhoneticPr is included in poi-ooxml jar, see Bugzilla 49325
authorYegor Kozlov <yegor@apache.org>
Sat, 22 May 2010 16:07:31 +0000 (16:07 +0000)
committerYegor Kozlov <yegor@apache.org>
Sat, 22 May 2010 16:07:31 +0000 (16:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@947312 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/status.xml
src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFBugs.java

index 9d34da5b1ef5633250ba6f9450c00a011c9fa0b4..ea298f929831f35ee5f5c4741be8f52ccba8552c 100644 (file)
@@ -34,6 +34,8 @@
 
     <changes>
         <release version="3.7-SNAPSHOT" date="2010-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">49325 - Ensure that CTPhoneticPr is included in poi-ooxml jar</action>
+           <action dev="POI-DEVELOPERS" type="fix">49191 - Fixed tests failing in non-english locales</action>
            <action dev="POI-DEVELOPERS" type="add">48432 - Support for XSSF themes</action>
            <action dev="POI-DEVELOPERS" type="add">49244 - Support for data validation for OOXML format</action>
            <action dev="POI-DEVELOPERS" type="add">49066 - Worksheet/cell formatting, with view and HTML converter</action>
index 7d3df74279baf66f69395049eba286c622aca3d5..f521cb53ba0556ba85b63011f36ccc39cb901619 100644 (file)
@@ -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());
+    }
 }