]> source.dussan.org Git - poi.git/commitdiff
tests parenthesis
authorAndrew C. Oliver <acoliver@apache.org>
Sun, 28 Apr 2002 16:40:18 +0000 (16:40 +0000)
committerAndrew C. Oliver <acoliver@apache.org>
Sun, 28 Apr 2002 16:40:18 +0000 (16:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352528 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java

index dfe4bb91226ee63239660b4c8c5fbf3957b8ecf2..1dee21cc635fbf7b9efc60791da9afe7e6f4b4cb 100644 (file)
@@ -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())
         ));