bayard 2004/01/02 00:04:09
Modified: io/src/test/org/apache/commons/io/input
SwappedDataInputStreamTest.java
Log:
skipBytes test added
Revision Changes Path
1.5 +7 -7
jakarta-commons-sandbox/io/src/test/org/apache/commons/io/input/SwappedDataInputStreamTest.java
Index: SwappedDataInputStreamTest.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/io/src/test/org/apache/commons/io/input/SwappedDataInputStreamTest.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- SwappedDataInputStreamTest.java 2 Jan 2004 07:59:13 -0000 1.4
+++ SwappedDataInputStreamTest.java 2 Jan 2004 08:04:09 -0000 1.5
@@ -133,7 +133,7 @@
assertEquals( (int) 0x04030201, this.sdis.readInt() );
}
-/*
+ /*
public void testReadLine() throws IOException {
}
*/
@@ -162,9 +162,9 @@
}
}
- /*
public void testSkipBytes() throws IOException {
+ this.sdis.skipBytes(4);
+ assertEquals( (int)0x08070605, this.sdis.readInt() );
}
- */
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]