From: Nick Burch Date: Sat, 26 Jul 2014 22:39:16 +0000 (+0000) Subject: Unit test to show that bug #52111 (intersect formulas) was already solved X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a4e73e3dc8225a123a5e5c6c1a0c69e448485977;p=poi.git Unit test to show that bug #52111 (intersect formulas) was already solved git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1613737 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java b/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java index c2b4c67ba2..de12602e40 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java @@ -2702,4 +2702,24 @@ public final class TestBugs extends BaseTestBugzillaIssues { // Optimise HSSFOptimiser.optimiseCellStyles(workbook); } + + /** + * Intersection formula ranges, eg =(C2:D3 D3:E4) + */ + @Test + public void bug52111() throws Exception { + Workbook wb = openSample("Intersection-52111.xls"); + Sheet s = wb.getSheetAt(0); + + // Check we can read it correctly + Cell intF = s.getRow(2).getCell(0); + assertEquals(Cell.CELL_TYPE_FORMULA, intF.getCellType()); + assertEquals(Cell.CELL_TYPE_NUMERIC, intF.getCachedFormulaResultType()); + + assertEquals("(C2:D3 D3:E4)", intF.getCellFormula()); + + // Check we can evaluate it correctly + FormulaEvaluator eval = wb.getCreationHelper().createFormulaEvaluator(); + assertEquals("4.0", eval.evaluate(intF).formatAsString()); + } } diff --git a/test-data/spreadsheet/Intersection-52111.xls b/test-data/spreadsheet/Intersection-52111.xls new file mode 100644 index 0000000000..835130e8b7 Binary files /dev/null and b/test-data/spreadsheet/Intersection-52111.xls differ