out.writeLong(-3);
out.writeVLong(4);
out.writeFloat(1.1f);
out.writeDouble(2.2);
out.writeUTF("hello");
out.writeUTF("goodbye");
BytesStreamInput in = new BytesStreamInput(out.copiedByteArray());
assertThat(in.readBoolean(), equalTo(false));
assertThat(in.readByte(), equalTo((byte) 1));
assertThat(in.readShort(), equalTo((short) -1));