String f = "D:\\mysrc\\pasco2\\src\\test\\isrc\\pasco2\\empty.history.index.dat";
IndexFile fr = new FastReadIndexFile(f, "r");
IEIndexFileParser parser = new IEHistoryFileParser(f, fr);
parser.parseFile();
ValidRecordIterator it = parser.getValidRecords();
int count = 0;
while (it.hasNext()) {
count += 1;
it.next();
}
assertEquals(00, count);
} catch (Exception e) {
fail();
}