(Blackhole blackhole, Map<String, Integer> mapp)
| 73 | } |
| 74 | |
| 75 | private void mapGet(Blackhole blackhole, Map<String, Integer> mapp) { |
| 76 | int index = rand(0, numberEntries); |
| 77 | blackhole.consume(mapp.get("string" + index)); |
| 78 | } |
| 79 | |
| 80 | private int rand(int loInc, int hiExc) { |
| 81 | return random.nextInt(hiExc - loInc) + loInc; |
no test coverage detected