public void testUTFWithDoubleByteChar() throws IOException {
String name="Bela\234";
ByteArrayDataOutputStream out=new ByteArrayDataOutputStream(2);
out.writeUTF(name);
assert out.position() == Bits.sizeUTF(name);
ByteArrayDataInputStream in=new ByteArrayDataInputStream(out.buffer());
String tmp=in.readUTF();
assert name.equals(tmp);
}
public void testUTFWithDoubleByteChar2() throws IOException {