We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9104aae commit fdc3868Copy full SHA for fdc3868
src/test/java/bwapi/ClientDataBenchmark.java
@@ -55,6 +55,14 @@ private static String[] buildStrings() {
55
return strings;
56
}
57
58
+ @Benchmark
59
+ @Measurement(iterations = 2, time = 2)
60
+ @Warmup(time = 2)
61
+ @Fork(2)
62
+ public void reference(Blackhole blackhole) {
63
+ blackhole.consume(0);
64
+ }
65
+
66
@Benchmark
67
@OperationsPerInvocation(Client.MAX_COUNT)
68
public int addUnitCommand(EmptyState s) {
0 commit comments