assertEquals(result, "1234567890");
}
public void testSkip() throws IOException {
InputStream in = new ContentLengthInputStream(new SessionInputBufferMockup(new byte[20]), 10L);
assertEquals(10, in.skip(10));
assertTrue(in.read() == -1);
in = new ContentLengthInputStream(new SessionInputBufferMockup(new byte[20]), 10L);
in.read();
assertEquals(9, in.skip(10));