// Bytes
msg = new StreamMessageImpl();
msg.writeInt(123);
msg.markAsReadOnly();
try { msg.readBytes(new byte[1]); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */ }
assertEquals(123,msg.readInt());
}
public void testLongConversion() throws Exception
{
StreamMessageImpl msg;