org.mockito.internal.verification
Class VerificationModeFactory

java.lang.Object
  extended by org.mockito.internal.verification.VerificationModeFactory

public class VerificationModeFactory
extends java.lang.Object


Constructor Summary
VerificationModeFactory()
           
 
Method Summary
static VerificationMode atLeast(int minNumberOfInvocations)
           
static VerificationMode atLeastOnce()
           
static VerificationMode atMost(int maxNumberOfInvocations)
           
static NoMoreInteractions noMoreInteractions()
           
static VerificationMode only()
           
static Times times(int wantedNumberOfInvocations)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

VerificationModeFactory

public VerificationModeFactory()
Method Detail

atLeastOnce

public static VerificationMode atLeastOnce()

atLeast

public static VerificationMode atLeast(int minNumberOfInvocations)

only

public static VerificationMode only()

times

public static Times times(int wantedNumberOfInvocations)

noMoreInteractions

public static NoMoreInteractions noMoreInteractions()

atMost

public static VerificationMode atMost(int maxNumberOfInvocations)