Uses of Interface
org.mockito.internal.stubbing.VoidMethodStubbable

Packages that use VoidMethodStubbable
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. 
 

Uses of VoidMethodStubbable in org.mockito
 

Methods in org.mockito that return VoidMethodStubbable
static
<T> VoidMethodStubbable<T>
Mockito.stubVoid(T mock)
          Deprecated. Use Mockito.doThrow(Throwable) method for stubbing voids
 

Uses of VoidMethodStubbable in org.mockito.internal
 

Methods in org.mockito.internal that return VoidMethodStubbable
 VoidMethodStubbable<T> MockHandler.voidMethodStubbable(T mock)
           
 

Uses of VoidMethodStubbable in org.mockito.internal.stubbing
 

Methods in org.mockito.internal.stubbing that return VoidMethodStubbable
 VoidMethodStubbable<T> VoidMethodStubbable.toAnswer(Answer<?> answer)
          Stubs a void method with generic Answer
 VoidMethodStubbable<T> VoidMethodStubbable.toReturn()
          Stubs void method to 'just return' (e.g.
 VoidMethodStubbable<T> VoidMethodStubbable.toThrow(java.lang.Throwable throwable)
          Stubs void method with an exception.