Running all benchmark modes

Report a typo

How many benchmark mode results will this method print?

@Benchmark
@BenchmarkMode(Mode.All)
public String testAll() {
    Map<Integer, String> map = new HashMap<>();
    map.put(1, "A");

    return map.get(1);
}
Enter a number
___

Create a free account to access the full topic