mirror of https://github.com/apache/poi.git
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
This commit is contained in:
parent
48c0213a20
commit
38434a684e
|
@ -150,12 +150,19 @@ public final class TestXSSFFormulaEvaluation extends BaseTestFormulaEvaluator {
|
||||||
// Try evaluating all of them, ensure we don't blow up
|
// Try evaluating all of them, ensure we don't blow up
|
||||||
for(Row r : s) {
|
for(Row r : s) {
|
||||||
for (Cell c : r) {
|
for (Cell c : r) {
|
||||||
// TODO Fix and enable
|
evaluator.evaluate(c);
|
||||||
// evaluator.evaluate(c);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Evaluate and check results
|
// 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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue