Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testEntrySet_addNotSupported (0.12 seconds)

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

          assertThrows(
              NullPointerException.class, () -> entries.toArray((Entry<Object, Object>[]) null));
          checkEmpty(cache);
        }
      }
    
      public void testEntrySet_addNotSupported() {
        for (LoadingCache<Object, Object> cache : caches()) {
          assertThrows(
              UnsupportedOperationException.class, () -> cache.asMap().entrySet().add(entryOf(1, 1)));
    
          assertThrows(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 11.6K bytes
    - Click Count (0)
Back to Top