Uses of Interface
org.mockito.stubbing.DeprecatedOngoingStubbing
-
Packages that use DeprecatedOngoingStubbing Package Description org.mockito Mockito is a mock library for java - see Mockito class for for usage.org.mockito.internal Internal classes, not to be used by clients.org.mockito.internal.stubbing Stubbing logic.org.mockito.stubbing External stubbing related classes -
-
Uses of DeprecatedOngoingStubbing in org.mockito
Methods in org.mockito that return DeprecatedOngoingStubbing Modifier and Type Method Description static <T> DeprecatedOngoingStubbing<T>Mockito. stub(T methodCall)Stubs a method call with return value or an exception. -
Uses of DeprecatedOngoingStubbing in org.mockito.internal
Methods in org.mockito.internal that return DeprecatedOngoingStubbing Modifier and Type Method Description <T> DeprecatedOngoingStubbing<T>MockitoCore. stub(T methodCall) -
Uses of DeprecatedOngoingStubbing in org.mockito.internal.stubbing
Classes in org.mockito.internal.stubbing that implement DeprecatedOngoingStubbing Modifier and Type Class Description classBaseStubbing<T>classConsecutiveStubbing<T>classOngoingStubbingImpl<T>Methods in org.mockito.internal.stubbing that return DeprecatedOngoingStubbing Modifier and Type Method Description DeprecatedOngoingStubbing<T>ConsecutiveStubbing. toAnswer(Answer<?> answer)DeprecatedOngoingStubbing<T>OngoingStubbingImpl. toAnswer(Answer<?> answer)DeprecatedOngoingStubbing<T>BaseStubbing. toReturn(T value)DeprecatedOngoingStubbing<T>BaseStubbing. toThrow(java.lang.Throwable throwable) -
Uses of DeprecatedOngoingStubbing in org.mockito.stubbing
Methods in org.mockito.stubbing that return DeprecatedOngoingStubbing Modifier and Type Method Description DeprecatedOngoingStubbing<T>DeprecatedOngoingStubbing. toAnswer(Answer<?> answer)Set a generic Answer for the stubbed method.DeprecatedOngoingStubbing<T>DeprecatedOngoingStubbing. toReturn(T value)Set a return value for the stubbed method.DeprecatedOngoingStubbing<T>DeprecatedOngoingStubbing. toThrow(java.lang.Throwable throwable)Set a Throwable to be thrown when the stubbed method is called.
-