private void _testChunkyLongerSkip(SegType aType) throws Exception
{
final ChunkyBytesMemBuffer buffer = createBytesBuffers(aType, 10, 1, 4).createChunkyBuffer(1, 3);
// maximum: 29 data bytes, 1 for length
buffer.appendEntry(new byte[29]);
assertEquals(29, buffer.skipNextEntry());
assertEquals(-1, buffer.skipNextEntry());
}
/*
/**********************************************************************