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:
parent
6fdf527896
commit
1e07dbc576
BIN
src/testcases/org/apache/poi/hssf/data/12843-1.xls
Normal file
BIN
src/testcases/org/apache/poi/hssf/data/12843-1.xls
Normal file
Binary file not shown.
BIN
src/testcases/org/apache/poi/hssf/data/12843-2.xls
Normal file
BIN
src/testcases/org/apache/poi/hssf/data/12843-2.xls
Normal file
Binary file not shown.
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user