aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java')
-rw-r--r--src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
index dfe4bb9122..1dee21cc63 100644
--- a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
+++ b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
@@ -181,6 +181,14 @@ extends TestCase {
throws Exception {
orderTest("1*2+3^4");
}
+
+ /**
+ * Tests that parenthesis are obeyed
+ */
+ public void testParenthesis()
+ throws Exception {
+ orderTest("(1*3)+2+(1+2)*(3^4)^5");
+ }
/**
* tests order wrting out == order writing in for a given formula
@@ -279,7 +287,7 @@ extends TestCase {
//get our minimum values
r = s.getRow((short)0);
c = r.getCell((short)1);
- assertTrue("minval Formula is as expected",
+ assertTrue("minval Formula is as expected 1"+operator+"1 != "+c.getCellFormula(),
( ("1"+operator+"1").equals(c.getCellFormula())
));