comments.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352523 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-04-28 15:42:42 +00:00
parent a327fa328d
commit 9482fd0115

View File

@ -160,6 +160,11 @@ extends TestCase {
/**
* 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) private void binomialOperator(String operator)
throws Exception { throws Exception {
short rownum = 0; short rownum = 0;
@ -200,6 +205,10 @@ extends TestCase {
binomialVerify(operator,file); binomialVerify(operator,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) private void binomialVerify(String operator, File file)
throws Exception { throws Exception {
short rownum = 0; short rownum = 0;
@ -224,10 +233,8 @@ extends TestCase {
//System.out.println("y="+y); //System.out.println("y="+y);
c = r.getCell((short) y); c = r.getCell((short) y);
assertTrue("loop Formula is as expected",( assertTrue("loop Formula is as expected "+x+operator+y+"!="+c.getCellFormula(),(
(""+x+operator+y).equals( (""+x+operator+y).equals(c.getCellFormula())
c.getCellFormula()
)
) )
); );
@ -238,10 +245,10 @@ extends TestCase {
//test our maximum values //test our maximum values
r = s.getRow((short)0); r = s.getRow((short)0);
c = r.getCell((short)0); c = r.getCell((short)0);
assertTrue("maxval Formula is as expected",( assertTrue("maxval Formula is as expected",(
(""+Short.MAX_VALUE+operator+Short.MAX_VALUE).equals( (""+Short.MAX_VALUE+operator+Short.MAX_VALUE).equals(c.getCellFormula())
c.getCellFormula()
)
) )
); );