@Test( expected = IllegalArgumentException.class )
public void packet4() throws Exception
{
// Create too-small packet to send
assert p.headerSize() > 7;
FlexBuffer buf = new FlexBuffer( new byte[]
{
// space for header:
0, 0, 0, 0, 0, 0, 0 // too short!
// packet data:
} );