From bf6f54d8365f61e542540d9951c47e2d1c6259cb Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Wed, 23 Jul 2014 19:09:45 +0000 Subject: [PATCH] Get further with the XSSF formula reference evaluation testing git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1612926 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/xssf/usermodel/TestXSSFFormulaEvaluation.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaEvaluation.java b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaEvaluation.java index 1c1de721b..3857b0d52 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaEvaluation.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaEvaluation.java @@ -150,12 +150,19 @@ public final class TestXSSFFormulaEvaluation extends BaseTestFormulaEvaluator { // Try evaluating all of them, ensure we don't blow up for(Row r : s) { for (Cell c : r) { - // TODO Fix and enable - // evaluator.evaluate(c); + evaluator.evaluate(c); } } // Evaluate and check results + assertEquals("\"Hello!\"", evaluator.evaluate(cXSLX_cell).formatAsString()); + // TODO Fix XSSF reference evaluations to work +// assertEquals("\"Test A1\"", evaluator.evaluate(cXSLX_sNR).formatAsString()); +// assertEquals("142.0", evaluator.evaluate(cXSLX_gNR).formatAsString()); + + assertEquals("\"Hello!\"", evaluator.evaluate(cXSL_cell).formatAsString()); + assertEquals("\"Test A1\"", evaluator.evaluate(cXSL_sNR).formatAsString()); + assertEquals("142.0", evaluator.evaluate(cXSL_gNR).formatAsString()); } /**