Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testGet_runtimeException (0.08 sec)

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

        assertThrows(InvalidCacheLoadException.class, () -> cache.getUnchecked(new Object()));
    
        assertThat(listener.isEmpty()).isTrue();
        checkEmpty(cache);
      }
    
      public void testGet_runtimeException() {
        RuntimeException e = new RuntimeException();
        LoadingCache<Object, Object> map =
            CacheBuilder.newBuilder()
                .maximumSize(0)
                .removalListener(listener)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:07:52 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/NullCacheTest.java

        assertThrows(InvalidCacheLoadException.class, () -> cache.getUnchecked(new Object()));
    
        assertThat(listener.isEmpty()).isTrue();
        checkEmpty(cache);
      }
    
      public void testGet_runtimeException() {
        RuntimeException e = new RuntimeException();
        LoadingCache<Object, Object> map =
            CacheBuilder.newBuilder()
                .maximumSize(0)
                .removalListener(listener)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:07:52 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top