Class VerificationModeFactory
- java.lang.Object
-
- org.mockito.internal.verification.VerificationModeFactory
-
public class VerificationModeFactory extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description VerificationModeFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerificationMode
atLeast(int minNumberOfInvocations)
static VerificationMode
atLeastOnce()
static VerificationMode
atMost(int maxNumberOfInvocations)
static Calls
calls(int wantedNumberOfInvocations)
static NoMoreInteractions
noMoreInteractions()
static VerificationMode
only()
static Times
times(int wantedNumberOfInvocations)
-
-
-
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)
-
calls
public static Calls calls(int wantedNumberOfInvocations)
-
noMoreInteractions
public static NoMoreInteractions noMoreInteractions()
-
atMost
public static VerificationMode atMost(int maxNumberOfInvocations)
-
-