Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testEntrySet_clear (0.06 sec)

  1. android/guava-tests/test/com/google/common/cache/EmptyCachesTest.java

          assertThrows(
              UnsupportedOperationException.class,
              () -> cache.asMap().values().addAll(asList(entryOf(1, 1), entryOf(2, 2))));
        }
      }
    
    
      public void testEntrySet_clear() {
        for (LoadingCache<Object, Object> cache : caches()) {
          warmUp(cache, 0, 100);
    
          Set<Entry<Object, Object>> entrySet = cache.asMap().entrySet();
          entrySet.clear();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top