]> source.dussan.org Git - poi.git/commitdiff
Updates to test to reflect change of API
authorJason Height <jheight@apache.org>
Tue, 14 Oct 2003 07:42:38 +0000 (07:42 +0000)
committerJason Height <jheight@apache.org>
Tue, 14 Oct 2003 07:42:38 +0000 (07:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353397 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/record/TestSSTDeserializer.java
src/testcases/org/apache/poi/hssf/record/TestSSTRecord.java

index 6272653202a3b3321dd6d8999605ebcadaff61a4..a506e37c11c7aa49f02c2370b28e6f47ef09f8c6 100644 (file)
@@ -88,7 +88,7 @@ public class TestSSTDeserializer
         byte[] bytes = HexRead.readData( _test_file_path + File.separator + "richtextdata.txt", "header" );
         BinaryTree strings = new BinaryTree();
         SSTDeserializer deserializer = new SSTDeserializer( strings );
-        deserializer.manufactureStrings( bytes, 0, (short)bytes.length );
+        deserializer.manufactureStrings( bytes, 0);
         byte[] continueBytes = HexRead.readData( _test_file_path + File.separator + "richtextdata.txt", "continue1" );
         deserializer.processContinueRecord( continueBytes );
 
@@ -101,7 +101,7 @@ public class TestSSTDeserializer
         byte[] bytes = HexRead.readData( _test_file_path + File.separator + "evencontinuation.txt", "header" );
         BinaryTree strings = new BinaryTree();
         SSTDeserializer deserializer = new SSTDeserializer( strings );
-        deserializer.manufactureStrings( bytes, 0, (short)bytes.length );
+        deserializer.manufactureStrings( bytes, 0);
         byte[] continueBytes = HexRead.readData( _test_file_path + File.separator + "evencontinuation.txt", "continue1" );
         deserializer.processContinueRecord( continueBytes );
 
@@ -119,7 +119,7 @@ public class TestSSTDeserializer
         byte[] bytes = HexRead.readData( _test_file_path + File.separator + "stringacross2continuations.txt", "header" );
         BinaryTree strings = new BinaryTree();
         SSTDeserializer deserializer = new SSTDeserializer( strings );
-        deserializer.manufactureStrings( bytes, 0, (short)bytes.length );
+        deserializer.manufactureStrings( bytes, 0);
         bytes = HexRead.readData( _test_file_path + File.separator + "stringacross2continuations.txt", "continue1" );
         deserializer.processContinueRecord( bytes );
         bytes = HexRead.readData( _test_file_path + File.separator + "stringacross2continuations.txt", "continue2" );
@@ -136,7 +136,7 @@ public class TestSSTDeserializer
         byte[] bytes = HexRead.readData( _test_file_path + File.separator + "extendedtextstrings.txt", "rich-header" );
         BinaryTree strings = new BinaryTree();
         SSTDeserializer deserializer = new SSTDeserializer( strings );
-        deserializer.manufactureStrings( bytes, 0, (short)bytes.length );
+        deserializer.manufactureStrings( bytes, 0);
         byte[] continueBytes = HexRead.readData( _test_file_path + File.separator + "extendedtextstrings.txt", "rich-continue1" );
         deserializer.processContinueRecord( continueBytes );
 
@@ -146,7 +146,7 @@ public class TestSSTDeserializer
         bytes = HexRead.readData( _test_file_path + File.separator + "extendedtextstrings.txt", "norich-header" );
         strings = new BinaryTree();
         deserializer = new SSTDeserializer( strings );
-        deserializer.manufactureStrings( bytes, 0, (short)bytes.length );
+        deserializer.manufactureStrings( bytes, 0);
         continueBytes = HexRead.readData( _test_file_path + File.separator + "extendedtextstrings.txt", "norich-continue1" );
         deserializer.processContinueRecord( continueBytes );
 
index 24105993dd6069a6b12a7193c01b17fad3cc133c..747868c98a04fd83472b0dfadc08cbed599fd33f 100644 (file)
@@ -429,7 +429,7 @@ public class TestSSTRecord
         assertEquals( 1464, record.getNumStrings() );
         assertEquals( 688, record.getNumUniqueStrings() );
         assertEquals( 492, record.countStrings() );
-        assertEquals( 1, record.getDeserializer().getContinuationExpectedChars() );
+//jmh        assertEquals( 1, record.getDeserializer().getContinuationExpectedChars() );
         assertEquals( "Consolidated B-24J Liberator The Dragon & His Tai",
                 record.getDeserializer().getUnfinishedString() );
 //        assertEquals( 52, record.getDeserializer().getTotalLength() );
@@ -448,7 +448,7 @@ public class TestSSTRecord
         assertEquals( 0, record.getNumStrings() );
         assertEquals( 0, record.getNumUniqueStrings() );
         assertEquals( 0, record.countStrings() );
-        assertEquals( 0, record.getDeserializer().getContinuationExpectedChars() );
+        assertEquals( 0, record.getDeserializer().getContinuationCharsRead() );
         assertEquals( "", record.getDeserializer().getUnfinishedString() );
 //        assertEquals( 0, record.getDeserializer().getTotalLength() );
 //        assertEquals( 0, record.getDeserializer().getStringDataOffset() );