public void testDecodingFromSessionBuffer1() throws Exception {
ReadableByteChannel channel = new ReadableByteChannelMockup(
new String[] {"stuff;", "more stuff"}, "US-ASCII");
SessionInputBuffer inbuf = new SessionInputBuffer(1024, 256);
inbuf.fill(channel);
assertEquals(6, inbuf.length());
LengthDelimitedDecoder decoder = new LengthDelimitedDecoder(channel, inbuf, 16);