updated to include additional tests for IF()

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@479293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Amol S. Deshmukh 2006-11-26 06:14:54 +00:00
parent 0bce29d37c
commit ae6f6b3d1a

View File

@ -17,7 +17,7 @@ public class TestEverything extends TestSuite {
public static TestSuite suite() throws Exception {
TestSuite suite = new TestSuite("Tests for individual function classes");
String s;
for(int i=80; i<1481;i=i+4) {
for(int i=80; i<1485;i=i+4) {
s = "D"+Integer.toString(i).trim();
suite.addTest(new GenericFormulaTestCase(s));
}