mirror of https://github.com/apache/poi.git
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
69e7cadf82
commit
7e9e442561
Binary file not shown.
Binary file not shown.
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue