git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352528
13f79535-47bb-0310-9956-
ffa450edef68
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
//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())
));