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