return testFilesIt.next();
}
private byte[] createUTF8String(String str) {
ArrayBackedValueStorage abvs = new ArrayBackedValueStorage();
StringValueBuilder svb = new StringValueBuilder();
try {
svb.write(str, abvs.getDataOutput());
} catch (IOException e) {
throw new IllegalStateException(e);
}
return Arrays.copyOf(abvs.getByteArray(), abvs.getLength());
}