Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testInvokeAll (0.05 seconds)

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

          Future<String> f = testExecutor.submit(task);
          mock.assertLastMethodCalled("submit");
          assertThat(f.get()).isEqualTo(RESULT_VALUE);
        }
      }
    
      public void testInvokeAll() throws InterruptedException, ExecutionException {
        List<Callable<String>> tasks = createTasks(3);
        {
          MockExecutor mock = new MockExecutor();
          TestExecutor testExecutor = new TestExecutor(mock);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

          Future<String> f = testExecutor.submit(task);
          mock.assertLastMethodCalled("submit");
          assertThat(f.get()).isEqualTo(RESULT_VALUE);
        }
      }
    
      public void testInvokeAll() throws InterruptedException, ExecutionException {
        List<Callable<String>> tasks = createTasks(3);
        {
          MockExecutor mock = new MockExecutor();
          TestExecutor testExecutor = new TestExecutor(mock);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 10.1K bytes
    - Click Count (0)
Back to Top