ProxyAssertSupport.assertEquals((byte)4, bytes[0]);
ProxyAssertSupport.assertEquals((byte)5, bytes[1]);
ProxyAssertSupport.assertEquals((byte)6, bytes[2]);
ProxyAssertSupport.assertEquals((char)7, bm.readChar());
ProxyAssertSupport.assertEquals(new Double(8.0), new Double(bm.readDouble()));
ProxyAssertSupport.assertEquals(new Float(9.0), new Float(bm.readFloat()));
ProxyAssertSupport.assertEquals(10, bm.readInt());
ProxyAssertSupport.assertEquals(11l, bm.readLong());
ProxyAssertSupport.assertEquals((short)12, bm.readShort());
ProxyAssertSupport.assertEquals("this is an UTF String", bm.readUTF());
}