HomeSort by relevance Sort by last modified time
    Searched refs:removalNotifications (Results 1 - 2 of 2) sorted by null

  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 163 Map<String, String> removalNotifications = Maps.newHashMap();
165 removalNotifications.put(notification.getKey(), notification.getValue());
173 assertEquals("b" + i, removalNotifications.get("b" + i));
178 assertEquals(expectedKeys, Sets.union(map.keySet(), removalNotifications.keySet()));
179 assertTrue(Sets.intersection(map.keySet(), removalNotifications.keySet()).isEmpty());
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderTest.java 501 Map<String, String> removalNotifications = Maps.newHashMap();
503 removalNotifications.put(notification.getKey(), notification.getValue());
511 assertEquals("b" + i, removalNotifications.get("b" + i));
516 assertEquals(expectedKeys, Sets.union(cache.asMap().keySet(), removalNotifications.keySet()));
517 assertTrue(Sets.intersection(cache.asMap().keySet(), removalNotifications.keySet()).isEmpty());

Completed in 3755 milliseconds