// Missing closing chunk
public void testChunkedInputStreamNoClosingChunk() throws IOException {
String s = "5\r\n01234\r\n";
ChunkedInputStream in = new ChunkedInputStream(
new SessionInputBufferMockup(
EncodingUtils.getBytes(s, CONTENT_CHARSET)));
byte[] tmp = new byte[5];
assertEquals(5, in.read(tmp));
assertEquals(-1, in.read());
}