More double byte chars testcases. Sync from branch

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353419 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2003-10-27 03:57:30 +00:00
parent 6fdf527896
commit 1e07dbc576
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); 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*/ /** Reference to Name*/
public void test13224() throws java.io.IOException { public void test13224() throws java.io.IOException {