Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for thenThrow (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ProjectExtensionsTest.kt

            whenever(project.extensions)
                .thenReturn(convention)
            whenever(project.convention)
                .thenReturn(convention)
            whenever(convention.getByType(eq(conventionType)))
                .thenThrow(UnknownDomainObjectException::class.java)
    
            try {
                project.the<CustomConvention>()
                fail("UnknownDomainObjectException not thrown")
            } catch (ex: UnknownDomainObjectException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        ExecutorService service = mock(ExecutorService.class);
        application.addDelayedShutdownHook(service, 2, TimeUnit.SECONDS);
        when(service.awaitTermination(2, TimeUnit.SECONDS)).thenThrow(new InterruptedException());
        application.shutdown();
        verify(service).shutdown();
      }
    
      public void testGetExitingExecutorService_executorSetToUseDaemonThreads() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        ExecutorService service = mock(ExecutorService.class);
        application.addDelayedShutdownHook(service, 2, TimeUnit.SECONDS);
        when(service.awaitTermination(2, TimeUnit.SECONDS)).thenThrow(new InterruptedException());
        application.shutdown();
        verify(service).shutdown();
      }
    
      public void testGetExitingExecutorService_executorSetToUseDaemonThreads() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top