testcase for 33082, which is now fixed

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2005-05-03 14:34:39 +00:00
parent 331a01c2b0
commit 12c6d4bb82
2 changed files with 8 additions and 9 deletions

View File

@ -507,6 +507,14 @@ extends TestCase {
}
assertTrue("No Exceptions till here!", true);
}
public void test33082() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/33082.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
assertTrue("Read book fine!" , true);
}
}

View File

@ -59,13 +59,4 @@ public class TestUnfixedBugs extends TestCase {
assertTrue("Read book fine!" , true);
}
/* possible the same as 34575, AIOOB in ObjRecord*/
public void test33082() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/33082.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
assertTrue("Read book fine!" , true);
}
}