comments.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352523 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a327fa328d
commit
9482fd0115
@ -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)
|
||||
throws Exception {
|
||||
short rownum = 0;
|
||||
@ -200,6 +205,10 @@ extends TestCase {
|
||||
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)
|
||||
throws Exception {
|
||||
short rownum = 0;
|
||||
@ -224,10 +233,8 @@ 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())
|
||||
)
|
||||
);
|
||||
|
||||
@ -238,10 +245,10 @@ extends TestCase {
|
||||
//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())
|
||||
)
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user