for (int j = i; j < i + 16; j++) {
if (Character.isValidCodePoint(j))
sb.appendCodePoint(j);
}
excerpt.index(n);
String text = excerpt.readUTF();
excerpt.finish();
assertEquals("i: " + i, sb.toString(), text);
}
assertTrue(excerpt.nextIndex());
String text = excerpt.readUTF();