public void test2() {
probe("asasdfdfagfffffaerawefgsgsdffffgvsdfgsgfsgfgweffvsregsrevsdfsagghhawdfd".getBytes());
}
public void testRand1000() throws IOException {
FastMultiByteArrayOutputStream out = new FastMultiByteArrayOutputStream(4096);
DataOutputStream data = new DataOutputStream(out);
Random rand = new Random(22222);
for(int times = 0; times < 3; times++) {
for(int i = 0; i < 1000; i++) {
data.writeInt(rand.nextInt());
}
probe(out.toByteArray_clear());
}
}