Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testRuntimeExceptionFromGet (0.89 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

        ListenableFuture<String> f = UncheckedThrowingFuture.throwingError(error);
        MockCallback callback = new MockCallback(error);
        addCallback(f, callback, directExecutor());
      }
    
      public void testRuntimeExceptionFromGet() {
        RuntimeException e = new IllegalArgumentException("foo not found");
        ListenableFuture<String> f = UncheckedThrowingFuture.throwingRuntimeException(e);
        MockCallback callback = new MockCallback(e);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 15:41:36 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top