public void testBFile() throws IOException, DbException {
File tmpFile = File.createTempFile("bfile", ".tmp");
tmpFile.deleteOnExit();
BIndexFile bfile = new BIndexFile(tmpFile, false);
bfile.create(false);
List<byte[]> list = new ArrayList<byte[]>(REPEAT);
Random random = new Random(54552542345L);
StopWatch sw1 = new StopWatch("[BFileUniq] Index Construction of " + REPEAT);
for(int i = 0; i < REPEAT; i++) {