acoliver    02/04/28 09:10:00

  Modified:    src/testcases/org/apache/poi/hssf/usermodel
                        TestFormulas.java
  Log:
  test first...glen will love it.. . test for concat operator...  also added some dumb 
order of operations
  checking
  
  Revision  Changes    Path
  1.5       +58 -1     
jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
  
  Index: TestFormulas.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TestFormulas.java 28 Apr 2002 15:42:42 -0000      1.4
  +++ TestFormulas.java 28 Apr 2002 16:10:00 -0000      1.5
  @@ -153,13 +153,70 @@
       /**
        * Exponentialize various integers;
        */
  -    public void testExponentIntegers()
  +    public void testPowerIntegers()
       throws Exception {
           binomialOperator("^");
       }
  +
  +    /**
  +     * Concatinate two numbers 1&2 = 12
  +     */
  +    public void testConcatIntegers() 
  +    throws Exception {
  +        binomialOperator("&");
  +    }
       
  +    /**
  +     * tests 1*2+3*4
  +     */
  +    public void testOrderOfOperationsMultiply() 
  +    throws Exception {
  +        orderTest("1*2+3*4");
  +    }
       
  +    /**
  +     * tests 1*2+3^4
  +     */
  +    public void testOrderOfOperationsPower() 
  +    throws Exception {
  +        orderTest("1*2+3^4");
  +    }
  +
  +    /**
  +     * tests order wrting out == order writing in for a given formula
  +     */    
  +    private void orderTest(String formula) 
  +    throws Exception {
  +        File file = File.createTempFile("testFormula",".xls");
  +        FileOutputStream out    = new FileOutputStream(file);
  +        HSSFWorkbook     wb     = new HSSFWorkbook();
  +        HSSFSheet        s      = wb.createSheet();
  +        HSSFRow          r      = null;
  +        HSSFCell         c      = null;
  +        
  +        //get our minimum values
  +        r = s.createRow((short)0);
  +        c = r.createCell((short)1);
  +        c.setCellFormula(formula);
  +                       
  +        wb.write(out);
  +        out.close();
  +        assertTrue("file exists",file.exists());
   
  +        FileInputStream  in     = new FileInputStream(file);
  +        wb     = new HSSFWorkbook(in);
  +        s      = wb.getSheetAt(0);
  +        
  +        //get our minimum values
  +        r = s.getRow((short)0);
  +        c = r.getCell((short)1);
  +        assertTrue("minval Formula is as expected",
  +                   formula.equals(c.getCellFormula())
  +                  );
  +        
  +        in.close();
  +    }
  +    
       /**
        * All multi-binomial operator tests use this to create a worksheet with a
        * huge set of x operator y formulas.  Next we call binomialVerify and verify
  
  
  


Reply via email to