From: PJ Fanning Date: Tue, 13 Nov 2018 08:37:11 +0000 (+0000) Subject: add testcase for https://bz.apache.org/bugzilla/show_bug.cgi?id=62906 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e6505d0e1073674e931ad31926cd9980f7ac369f;p=poi.git add testcase for https://bz.apache.org/bugzilla/show_bug.cgi?id=62906 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846492 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java index 7b0331a658..a43c8ca6ac 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java @@ -358,6 +358,7 @@ public final class TestXSSFTable { new CellReference(0, 0), new CellReference(2, 2)); XSSFTable table1 = sheet.createTable(reference1); + assertEquals("A1:C3", table1.getCTTable().getRef()); assertEquals(1, table1.getCTTable().getTableColumns().getTableColumnArray(0).getId()); assertEquals(2, table1.getCTTable().getTableColumns().getTableColumnArray(1).getId()); @@ -369,6 +370,7 @@ public final class TestXSSFTable { new CellReference(10, 10), new CellReference(12, 12)); XSSFTable table2 = sheet.createTable(reference2); + assertEquals("K11:M13", table2.getCTTable().getRef()); // these IDs dupplicate those from table1 and may be cause of https://bz.apache.org/bugzilla/show_bug.cgi?id=62906 assertEquals(1, table2.getCTTable().getTableColumns().getTableColumnArray(0).getId());