RecordingFileSystem.setRecorder(this);
config.record = true;
long time = System.currentTimeMillis();
Profiler p = new Profiler();
p.startCollecting();
new TestPageStoreCoverage().init(config).test();
System.out.println(p.getTop(3));
System.out.println(System.currentTimeMillis() - time);
System.out.println("counter: " + writeCount);
}