timer.finish();
report(this.getClass().getSimpleName(), "one-level", count, timer.getRate(count), getThroughput(charsRead, timer.getElapsedTimeMillis()));
timer.reset();
count = fetchTopLevelObject();
timer.finish();
report(this.getClass().getSimpleName(), "top-level", count, timer.getRate(count), getThroughput(charsRead, timer.getElapsedTimeMillis()));
}
static NumberFormat NUMBER_FORMAT = new DecimalFormat("##.##");
private void report(String classname, String testName, long totalObjects, double rate, double throughput) {