/external/mockito/src/test/java/org/mockitousage/stubbing/ |
D | StubbingWithThrowablesTest.java | 56 when(mock.add("")).thenThrow(new ExceptionOne()); in throws_same_exception_consecutively() 99 when(mock.add("throw")).thenThrow(expected); in shouldStubWithThrowable() 129 when(mock.size()).thenThrow(new ExceptionOne()); in shouldFailStubbingThrowableOnTheSameInvocationDueToAcceptableLimitation() 133 when(mock.size()).thenThrow(new ExceptionTwo()); in shouldFailStubbingThrowableOnTheSameInvocationDueToAcceptableLimitation() 141 when(reader.read()).thenThrow(ioException); in shouldAllowSettingCheckedException() 152 when(mock.add("quake")).thenThrow(error); in shouldAllowSettingError() 164 when(mock.add(null)).thenThrow((Exception) null); in shouldNotAllowNullExceptionType() 169 when(mock.add(null)).thenThrow(NaughtyException.class); in shouldInstantiateExceptionClassOnInteraction() 190 when(mock.add("monkey island")).thenThrow(new Exception()); in shouldNotAllowSettingInvalidCheckedException() 198 when(mock.add("monkey island")).thenThrow((Throwable) null); in shouldNotAllowSettingNullThrowable() [all …]
|
D | StubbingConsecutiveAnswersTest.java | 87 .thenThrow(new NullPointerException(), new RuntimeException()) in should_return_consecutive_value_and_throw_exceptions_set_by_shorten_return_methods() 89 .thenThrow(new IllegalArgumentException()); in should_return_consecutive_value_and_throw_exceptions_set_by_shorten_return_methods() 111 when(mock.simpleMethod()).thenThrow(new RuntimeException()) in should_throw_consecutively() 112 .thenThrow(new IllegalArgumentException()) in should_throw_consecutively() 113 .thenThrow(new NullPointerException()); in should_throw_consecutively() 138 when(mock.simpleMethod()).thenThrow(new RuntimeException(), in should_throw_consecutively_set_by_shorten_then_throw_method() 166 when(mock.simpleMethod()).thenThrow(IllegalArgumentException.class); in should_throw_classes() 183 when(mock.simpleMethod()).thenThrow(RuntimeException.class, in should_throw_consecutively_classes_set_by_shorten_then_throw_method() 211 .thenThrow(new IllegalArgumentException()) in should_mix_consecutive_returns_with_exceptions() 213 .thenThrow(new NullPointerException()) in should_mix_consecutive_returns_with_exceptions() [all …]
|
D | BasicStubbingTest.java | 63 when(mock.simpleMethod("one")).thenThrow(new RuntimeException()); in should_stubbing_not_be_treated_as_interaction()
|
/external/mockito/src/main/java/org/mockito/internal/stubbing/ |
D | BaseStubbing.java | 37 private OngoingStubbing<T> thenThrow(Throwable throwable) { in thenThrow() method in BaseStubbing 42 public OngoingStubbing<T> thenThrow(Throwable... throwables) { in thenThrow() method in BaseStubbing 44 return thenThrow((Throwable) null); in thenThrow() 49 stubbing = thenThrow(t); in thenThrow() 51 stubbing = stubbing.thenThrow(t); in thenThrow() 58 public OngoingStubbing<T> thenThrow(Class<? extends Throwable> throwableType) { in thenThrow() method in BaseStubbing 63 return thenThrow(newInstance(throwableType)); in thenThrow() 67 …public OngoingStubbing<T> thenThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwab… in thenThrow() method in BaseStubbing 69 return thenThrow((Class<Throwable>) null); in thenThrow() 71 OngoingStubbing<T> stubbing = thenThrow(toBeThrown); in thenThrow() [all …]
|
/external/mockito/src/test/java/org/mockitousage/ |
D | CompilationWarningsTest.java | 40 … when(mock(IMethods.class).objectReturningMethodNoArgs()).thenThrow(new NullPointerException()); in no_warnings_for_most_common_api() 41 …when(mock(IMethods.class).objectReturningMethodNoArgs()).thenThrow(new NullPointerException(), new… in no_warnings_for_most_common_api() 42 … when(mock(IMethods.class).objectReturningMethodNoArgs()).thenThrow(NullPointerException.class); in no_warnings_for_most_common_api() 47 …when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenThrow(new NullPointerE… in no_warnings_for_most_common_api() 48 …when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenThrow(new NullPointerE… in no_warnings_for_most_common_api() 49 …when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenThrow(NullPointerExcep… in no_warnings_for_most_common_api() 84 …when(mock(IMethods.class).objectReturningMethodNoArgs()).thenThrow(NullPointerException.class, Ill… in heap_pollution_JDK7plus_warning_avoided_BUT_now_unchecked_generic_array_creation_warnings_ON_JDK5plus_environment()
|
/external/mockito/src/main/java/org/mockito/stubbing/ |
D | OngoingStubbing.java | 89 OngoingStubbing<T> thenThrow(Throwable... throwables); in thenThrow() method 114 OngoingStubbing<T> thenThrow(Class<? extends Throwable> throwableType); in thenThrow() method 149 …OngoingStubbing<T> thenThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... … in thenThrow() method
|
/external/mockito/src/test/java/org/mockitousage/misuse/ |
D | InvalidUsageTest.java | 60 when(mock.simpleMethod()).thenThrow(new Exception()); in shouldNotAllowSettingInvalidCheckedException() 65 when(mock.simpleMethod()).thenThrow(new Throwable[] {null}); in shouldNotAllowSettingNullThrowable() 71 when(mock.simpleMethod()).thenThrow((Throwable) null); in shouldNotAllowSettingNullThrowableVararg() 76 when(mock.simpleMethod()).thenThrow(new RuntimeException(), null); in shouldNotAllowSettingNullConsecutiveThrowable()
|
/external/mockito/src/test/java/org/mockitousage/bugs/ |
D | FillInStackTraceScenariosTest.java | 48 when(mock.simpleMethod()).thenThrow(new NullStackTraceException()); in avoids_NPE() 57 when(mock.simpleMethod()).thenThrow(new NewStackTraceException()); in uses_return_value_from_fillInStackTrace()
|
D | NPEWhenMockingThrowablesTest.java | 28 when(mock.simpleMethod()).thenThrow(mock2); in shouldNotThrowNPE()
|
/external/mockito/src/main/java/org/mockito/ |
D | BDDMockito.java | 172 return new BDDOngoingStubbingImpl<T>(mockitoOngoingStubbing.thenThrow(throwables)); in willThrow() 176 return new BDDOngoingStubbingImpl<T>(mockitoOngoingStubbing.thenThrow(throwableType)); in willThrow() 180 …return new BDDOngoingStubbingImpl<T>(mockitoOngoingStubbing.thenThrow(throwableType, throwableType… in willThrow()
|
/external/mockito/src/test/java/org/mockitousage/stacktrace/ |
D | StackTraceFilteringTest.java | 126 when(mock.oneArg(true)).thenThrow(new Exception()); in shouldFilterStackTraceWhenThrowingExceptionFromMockHandler() 135 when(mock.simpleMethod()).thenThrow(new RuntimeException()); in shouldShowProperExceptionStackTrace()
|
/external/volley/src/test/java/com/android/volley/ |
D | NetworkDispatcherTest.java | 101 when(mNetwork.performRequest(any(Request.class))).thenThrow(new ServerError()); in exceptionPostsError() 115 when(mNetwork.performRequest(any(Request.class))).thenThrow(new ServerError()); in exceptionNotifiesListener()
|
D | RequestQueueIntegrationTest.java | 188 when(mMockNetwork.performRequest(request)).thenThrow(new VolleyError()); in add_requestFinishedListenerError()
|
/external/opencensus-java/exporters/trace/stackdriver/src/test/java/io/opencensus/exporter/trace/stackdriver/ |
D | StackdriverV2ExporterHandlerExportTest.java | 58 .thenThrow(new RuntimeException("TraceServiceStub called")); in export()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | DnsNameResolverTest.java | 241 .thenThrow(new AssertionError("should not called twice")); in resolve_cacheForever() 275 .thenThrow(new AssertionError("should not reach here.")); in resolve_usingCache() 433 .thenThrow(new UnknownHostException("I really tried")); in resolveAll_onlyBalancers() 463 .thenThrow(new Exception("something like javax.naming.NamingException")); in resolveAll_balancerLookupFails() 508 when(mockAddressResolver.resolveAddress(Matchers.anyString())).thenThrow(new AssertionError()); in doNotResolveWhenProxyDetected()
|
/external/mockito/src/test/java/org/mockitousage/matchers/ |
D | VerificationAndStubbingUsingMatchersTest.java | 34 when(three.simpleMethod(startsWith("test"))).thenThrow(new RuntimeException()); in shouldStubUsingMatchers()
|
/external/mockito/src/test/java/org/mockito/internal/configuration/plugins/ |
D | PluginLoaderTest.java | 71 when(initializer.loadImpl(Foo.class)).thenThrow(cause); in fails_to_load_plugin()
|
D | PluginFinderTest.java | 106 when(switcher.isEnabled(anyString())).thenThrow(new RuntimeException("Boo!")); in problems_loading_impl()
|
/external/mockito/src/test/java/org/mockitousage/basicapi/ |
D | ResetTest.java | 74 when(mock.simpleMethod("one")).thenThrow(new RuntimeException()); in shouldStubbingNotBeTreatedAsInteraction()
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
D | AndroidAuthenticatorTest.java | 57 when(mFuture.getResult()).thenThrow(new AuthenticatorException("sadness!")); in failedGetAuthToken()
|
D | AdaptedHttpStackTest.java | 53 .thenThrow(new ConnectTimeoutException()); in requestTimeout()
|
/external/mockito/src/test/java/org/mockitousage/annotation/ |
D | MockInjectionUsingConstructorTest.java | 60 when(calculator.countArticles("new")).thenThrow(new IllegalArgumentException()); in innerMockShouldRaiseAnExceptionThatChangesOuterMockBehavior()
|
/external/grpc-grpc-java/auth/src/test/java/io/grpc/auth/ |
D | GoogleAuthLibraryCallCredentialsTest.java | 192 when(credentials.getRequestMetadata(eq(expectedUri))).thenThrow(exception); in credentialsFailsWithIoException() 208 when(credentials.getRequestMetadata(eq(expectedUri))).thenThrow(exception); in credentialsFailsWithRuntimeException()
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | ClassNameTest.java | 135 when(spy.getKind()).thenThrow(new AssertionError()); in preventGetKind()
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | MoreExecutorsTest.java | 527 when(service.awaitTermination(2, TimeUnit.SECONDS)).thenThrow(new InterruptedException()); in testAddDelayedShutdownHook_interrupted() 671 .thenThrow(new InterruptedException()); in testShutdownAndAwaitTermination_interruptedInternal()
|