More double byte string read Testcases!

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353418 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2003-10-27 03:56:31 +00:00
parent fcd6ef1334
commit d193c7c1a4
3 changed files with 19 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -329,6 +329,25 @@ extends TestCase {
this.assertTrue("Read workbook!" , true);
}
/*Double byte strings
File supplied by jubeson*/
public void test12843_1() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/12843-1.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
this.assertTrue("Read workbook!" , true);
}
/*Double byte strings
File supplied by Paul Chung*/
public void test12843_2() throws java.io.IOException {
String filename = System.getProperty("HSSF.testdata.path");
filename=filename+"/12843-2.xls";
FileInputStream in = new FileInputStream(filename);
HSSFWorkbook wb = new HSSFWorkbook(in);
this.assertTrue("Read workbook!" , true);
}
/** Reference to Name*/
public void test13224() throws java.io.IOException {