avik 2003/10/26 19:57:31
Modified: src/testcases/org/apache/poi/hssf/usermodel TestBugs.java
Added: src/testcases/org/apache/poi/hssf/data 12843-1.xls
12843-2.xls
Log:
More double byte chars testcases. Sync from branch
Revision Changes Path
1.2 +3261 -0 jakarta-poi/src/testcases/org/apache/poi/hssf/data/12843-1.xls
<<Binary file>>
1.2 +927 -0 jakarta-poi/src/testcases/org/apache/poi/hssf/data/12843-2.xls
<<Binary file>>
1.10 +19 -0
jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java
Index: TestBugs.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- TestBugs.java 27 Oct 2003 03:43:16 -0000 1.9
+++ TestBugs.java 27 Oct 2003 03:57:30 -0000 1.10
@@ -329,6 +329,25 @@
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 {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]