assertEquals("c",msg.readString());
// Bytes
msg = new StreamMessageImpl();
msg.writeChar('c');
msg.markAsReadOnly();
try { msg.readBytes(new byte[1]); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */ }
assertEquals('c',msg.readChar());
}
public void testIntConversion() throws Exception