You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2010/11/04 17:55:36 UTC

svn commit: r1031077 - /poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java

Author: nick
Date: Thu Nov  4 16:55:36 2010
New Revision: 1031077

URL: http://svn.apache.org/viewvc?rev=1031077&view=rev
Log:
Add a few more little bits of formula unit tests

Modified:
    poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java

Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java?rev=1031077&r1=1031076&r2=1031077&view=diff
==============================================================================
--- poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java (original)
+++ poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFCell.java Thu Nov  4 16:55:36 2010
@@ -114,6 +114,7 @@ public final class TestXSSFCell extends 
 
         cell.setCellFormula("A2");
         assertEquals(XSSFCell.CELL_TYPE_FORMULA, cell.getCellType());
+        assertEquals("A2", cell.getCellFormula());
         //the value is not set and cell's type='N' which means blank
         assertEquals(STCellType.N, ctCell.getT());
 
@@ -121,6 +122,7 @@ public final class TestXSSFCell extends 
         cell.setCellValue("t='str'");
         //we are still of 'formula' type
         assertEquals(XSSFCell.CELL_TYPE_FORMULA, cell.getCellType());
+        assertEquals("A2", cell.getCellFormula());
         //cached formula value is set and cell's type='STR'
         assertEquals(STCellType.STR, ctCell.getT());
         assertEquals("t='str'", cell.getStringCellValue());



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org