(ConcurrentMap<Integer, Object> map, int base)
| 157 | } |
| 158 | |
| 159 | private static void depopulate(ConcurrentMap<Integer, Object> map, int base) |
| 160 | { |
| 161 | for (int i = base, j = base + Range; i < j; ++i) { |
| 162 | expect(map.containsKey(i)); |
| 163 | expect(map.remove(i) != null); |
| 164 | } |
| 165 | } |
| 166 | } |
no test coverage detected