mirror of https://github.com/apache/poi.git
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:
parent
29c985b1db
commit
de90d9b9fc
|
@ -508,6 +508,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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue