Uses of Interface
org.mockito.stubbing.DeprecatedOngoingStubbing

Packages that use DeprecatedOngoingStubbing
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
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
<T> DeprecatedOngoingStubbing<T>
MockitoCore.stub(T methodCall)
           
 

Uses of DeprecatedOngoingStubbing in org.mockito.internal.stubbing
 

Classes in org.mockito.internal.stubbing that implement DeprecatedOngoingStubbing
 class BaseStubbing<T>
           
 class ConsecutiveStubbing<T>
           
 class OngoingStubbingImpl<T>
           
 

Methods in org.mockito.internal.stubbing that return DeprecatedOngoingStubbing
 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
 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.