Lines Matching defs:EXTRA_VALUE

84 …assertSame(map.getOrDefault(EXTRA_KEY, EXTRA_VALUE), EXTRA_VALUE, "value not returned as default");  in testGetOrDefault()  local
96 assertSame(map.get(null), EXTRA_VALUE, "unexpected value"); in testPutIfAbsentNulls() local
97 assertSame(map.putIfAbsent(null, null), EXTRA_VALUE, "previous not expected value"); in testPutIfAbsentNulls() local
99 assertSame(map.get(null), EXTRA_VALUE, "unexpected value"); in testPutIfAbsentNulls() local
100 assertSame(map.remove(null), EXTRA_VALUE, "removed unexpected value"); in testPutIfAbsentNulls() local
109 assertSame(map.get(null), EXTRA_VALUE, "value not expected"); in testPutIfAbsentNulls() local
124 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testPutIfAbsent() local
125 assertSame(map.putIfAbsent(EXTRA_KEY, VALUES[2]), EXTRA_VALUE); in testPutIfAbsent() local
126 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testPutIfAbsent() local
203 assertSame(map.get(null), EXTRA_VALUE); in testReplaceKVNulls() local
212 assertSame(map.get(FIRST_KEY), EXTRA_VALUE, "found wrong value"); in testReplaceKVNoNulls() local
221 assertSame(map.get(KEYS[1]), EXTRA_VALUE); in testReplaceKV() local
228 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testReplaceKV() local
229 assertSame(map.replace(EXTRA_KEY, (String)expected), EXTRA_VALUE); in testReplaceKV() local
240 assertSame(map.get(null), EXTRA_VALUE); in testReplaceKVVNulls() local
242 assertSame(map.get(null), EXTRA_VALUE); in testReplaceKVVNulls() local
257 assertSame(map.get(FIRST_KEY), EXTRA_VALUE, "found wrong value"); in testReplaceKVVNoNulls() local
268 assertSame(map.get(KEYS[1]), EXTRA_VALUE); in testReplaceKVV() local
270 assertSame(map.get(KEYS[1]), EXTRA_VALUE); in testReplaceKVV() local
278 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testReplaceKVV() local
280 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testReplaceKVV() local
291 … assertSame(map.computeIfAbsent(null, (k) -> EXTRA_VALUE), EXTRA_VALUE, "not mapped to result"); in testComputeIfAbsentNulls() local
294 assertSame(map.get(null), EXTRA_VALUE, "not expected value"); in testComputeIfAbsentNulls() local
295 assertSame(map.remove(null), EXTRA_VALUE, "removed unexpected value"); in testComputeIfAbsentNulls() local
298 … assertSame(map.computeIfAbsent(null, (k) -> EXTRA_VALUE), EXTRA_VALUE, "not mapped to result"); in testComputeIfAbsentNulls() local
301 assertSame(map.get(null), EXTRA_VALUE, "not expected value"); in testComputeIfAbsentNulls() local
318 assertSame(map.computeIfAbsent(EXTRA_KEY, (k) -> EXTRA_VALUE), EXTRA_VALUE); in testComputeIfAbsent() local
320 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testComputeIfAbsent() local
387 }), EXTRA_VALUE, description); in testComputeNulls() local
389 assertSame(map.get(null), EXTRA_VALUE, description); in testComputeNulls() local
390 assertSame(map.remove(null), EXTRA_VALUE, description + ": removed value not expected"); in testComputeNulls() local
429 }), EXTRA_VALUE, description); in testComputeNulls() local
442 }), EXTRA_VALUE, description); in testCompute() local
443 assertSame(map.get(KEYS[1]), EXTRA_VALUE, description); in testCompute() local
454 }), EXTRA_VALUE); in testCompute() local
456 assertSame(map.get(EXTRA_KEY), EXTRA_VALUE); in testCompute() local