@Test
public void canReaderReallyLargeByteArray() throws Exception
{
byte[] bytes = new byte[650];
ChannelBuffer wrappedBuffer = ChannelBuffers.wrappedBuffer( bytes );
wrappedBuffer.resetWriterIndex();
BlockLogBuffer buffer = new BlockLogBuffer( wrappedBuffer );
byte[] bytesValue = new byte[600];
bytesValue[1] = 1;
bytesValue[99] = 2;