Added testcases for the double byte string read error.

We need to careful about regressions, particularly in HEAD


git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2003-10-27 03:04:11 +00:00
parent fe417c02ba
commit 1787340889
5 changed files with 49 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -287,6 +287,55 @@ extends TestCase {
System.out.println(io_Excp.getMessage()) ;
}
}
/**Double byte strings*/
public void test15556() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/15556.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
HSSFSheet sheet = wb.getSheetAt(0);
HSSFRow row = sheet.getRow(45);
this.assertTrue("Read row fine!" , true);
}
/*Double byte strings */
public void test22742() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/22742.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
//HSSFSheet sheet = wb.getSheetAt(0);
//HSSFRow row = sheet.getRow(45);
this.assertTrue("Read workbook!" , true);
}
/*Double byte strings */
public void test12561_1() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/12561-1.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
//HSSFSheet sheet = wb.getSheetAt(0);
//HSSFRow row = sheet.getRow(45);
this.assertTrue("Read workbook!" , true);
}
/*Double byte strings */
public void test12561_2() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/12561-2.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
//HSSFSheet sheet = wb.getSheetAt(0);
//HSSFRow row = sheet.getRow(45);
this.assertTrue("Read workbook!" , true);
}
}