Skip to content

Commit ee4b46d

Browse files
committed
cleanup BenchmarkLauncher
1 parent e50eb0a commit ee4b46d

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

e2e/src/test/java/org.dhatim.fastexcel.benchmarks/BenchmarkLauncher.java

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -29,38 +29,4 @@ public void launchBenchmarks() throws RunnerException {
2929
new Runner(options).run();
3030
}
3131

32-
void readerbenchmarks() throws RunnerException {
33-
String foo = ReaderBenchmark.class.getName() + "\\..*";
34-
Options options = new OptionsBuilder().include(foo)
35-
.mode(Mode.SingleShotTime)
36-
.warmupIterations(3)
37-
.warmupBatchSize(1)
38-
.measurementIterations(5)
39-
.threads(1)
40-
.forks(1)
41-
.timeUnit(TimeUnit.MILLISECONDS)
42-
.shouldFailOnError(true)
43-
.resultFormat(ResultFormatType.CSV)
44-
.result("jmh.csv")
45-
.build();
46-
new Runner(options).run();
47-
}
48-
49-
50-
public void writerlaunchBenchmarks() throws Exception {
51-
String foo = getClass().getName() + "$";
52-
Options options = new OptionsBuilder().include(foo)
53-
.mode(Mode.SingleShotTime)
54-
.warmupIterations(0)
55-
.warmupBatchSize(1)
56-
.measurementIterations(1)
57-
.threads(1)
58-
.forks(0)
59-
.timeUnit(TimeUnit.MILLISECONDS)
60-
.shouldFailOnError(true)
61-
.resultFormat(ResultFormatType.CSV)
62-
.result("jmh.csv")
63-
.build();
64-
new Runner(options).run();
65-
}
6632
}

0 commit comments

Comments
 (0)