// String
msg = new BytesMessageImpl();
msg.writeBytes(dummy);
msg.reset();
try { msg.readUTF(); fail("Should have failed"); } catch (MessageEOFException e) { /* OK */ }
assertEquals(3,msg.readBytes(new byte[3]));
// Bytes
msg = new BytesMessageImpl();
msg.writeBytes(dummy);