aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
diff options
context:
space:
mode:
authorAndrew C. Oliver <acoliver@apache.org>2002-04-28 15:42:42 +0000
committerAndrew C. Oliver <acoliver@apache.org>2002-04-28 15:42:42 +0000
commit98d4379b0c875dab894889d0f4773160fbdb72d2 (patch)
treeeb22248ba6f5f1540d5b2dbfedc0ad27445f3fb4 /src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
parent868b1a96b6464a2d1f9930f3ea920a151625c560 (diff)
downloadpoi-98d4379b0c875dab894889d0f4773160fbdb72d2.tar.gz
poi-98d4379b0c875dab894889d0f4773160fbdb72d2.zip
comments.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352523 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java')
-rw-r--r--src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java59
1 files changed, 33 insertions, 26 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
index 64b51eb453..9890e78418 100644
--- a/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
+++ b/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
@@ -100,11 +100,11 @@ extends TestCase {
//get our minimum values
r = s.createRow((short)1);
- c = r.createCell((short)1);
+ c = r.createCell((short)1);
c.setCellFormula(1 + "+" + 1);
wb.write(out);
- out.close();
+ out.close();
FileInputStream in = new FileInputStream(file);
wb = new HSSFWorkbook(in);
@@ -136,7 +136,7 @@ extends TestCase {
/**
* Subtract various integers
- */
+ */
public void testSubtractIntegers()
throws Exception {
binomialOperator("-");
@@ -144,7 +144,7 @@ extends TestCase {
/**
* Subtract various integers
- */
+ */
public void testDivideIntegers()
throws Exception {
binomialOperator("/");
@@ -153,14 +153,19 @@ extends TestCase {
/**
* Exponentialize various integers;
*/
- public void testExponentIntegers()
+ public void testExponentIntegers()
throws Exception {
binomialOperator("^");
}
-
- private void binomialOperator(String operator)
+
+ /**
+ * 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
+ * that they are all how we expect.
+ */
+ private void binomialOperator(String operator)
throws Exception {
short rownum = 0;
File file = File.createTempFile("testFormula",".xls");
@@ -200,7 +205,11 @@ extends TestCase {
binomialVerify(operator,file);
}
- private void binomialVerify(String operator, File file)
+ /**
+ * Opens the sheet we wrote out by binomialOperator and makes sure the formulas
+ * all match what we expect (x operator y)
+ */
+ private void binomialVerify(String operator, File file)
throws Exception {
short rownum = 0;
@@ -214,8 +223,8 @@ extends TestCase {
r = s.getRow((short)0);
c = r.getCell((short)1);
assertTrue("minval Formula is as expected",
- ( ("1"+operator+"1").equals(c.getCellFormula())
- ));
+ ( ("1"+operator+"1").equals(c.getCellFormula())
+ ));
for (short x = 1; x < Short.MAX_VALUE && x > 0; x=(short)(x*2)) {
r = s.getRow((short) x);
@@ -224,31 +233,29 @@ extends TestCase {
//System.out.println("y="+y);
c = r.getCell((short) y);
- assertTrue("loop Formula is as expected",(
- (""+x+operator+y).equals(
- c.getCellFormula()
- )
- )
- );
-
+ assertTrue("loop Formula is as expected "+x+operator+y+"!="+c.getCellFormula(),(
+ (""+x+operator+y).equals(c.getCellFormula())
+ )
+ );
+
}
}
-
+
//test our maximum values
r = s.getRow((short)0);
c = r.getCell((short)0);
+
+
assertTrue("maxval Formula is as expected",(
- (""+Short.MAX_VALUE+operator+Short.MAX_VALUE).equals(
- c.getCellFormula()
- )
- )
- );
-
+ (""+Short.MAX_VALUE+operator+Short.MAX_VALUE).equals(c.getCellFormula())
+ )
+ );
+
in.close();
- assertTrue("file exists",file.exists());
+ assertTrue("file exists",file.exists());
}
-
+
public static void main(String [] args) {