Uses of Interface
com.mockobjects.dynamic.ConstraintMatcher
-
Packages that use ConstraintMatcher Package Description com.mockobjects.dynamic -
-
Uses of ConstraintMatcher in com.mockobjects.dynamic
Classes in com.mockobjects.dynamic that implement ConstraintMatcher Modifier and Type Class Description class
AnyConstraintMatcher
class
FullConstraintMatcher
Fields in com.mockobjects.dynamic declared as ConstraintMatcher Modifier and Type Field Description static ConstraintMatcher
C. ANY_ARGS
static ConstraintMatcher
C. NO_ARGS
Methods in com.mockobjects.dynamic that return ConstraintMatcher Modifier and Type Method Description static ConstraintMatcher
C. anyArgs(int argCount)
static ConstraintMatcher
C. args()
static ConstraintMatcher
C. args(Constraint p)
static ConstraintMatcher
C. args(Constraint p1, Constraint p2)
static ConstraintMatcher
C. args(Constraint p1, Constraint p2, Constraint p3)
static ConstraintMatcher
C. eq(java.lang.Object arg0, java.lang.Object arg1)
static ConstraintMatcher
C. eq(java.lang.Object arg0, java.lang.Object arg1, java.lang.Object arg2)
Methods in com.mockobjects.dynamic with parameters of type ConstraintMatcher Modifier and Type Method Description Callable
CallFactory. createCallSignature(java.lang.String methodName, ConstraintMatcher constraints, Callable call)
Callable
DefaultCallFactory. createCallSignature(java.lang.String methodName, ConstraintMatcher constraints, Callable call)
void
Mock. expect(java.lang.String methodName, ConstraintMatcher args)
void
Mock. expectAndReturn(java.lang.String methodName, ConstraintMatcher args, boolean result)
void
Mock. expectAndReturn(java.lang.String methodName, ConstraintMatcher args, int result)
void
Mock. expectAndReturn(java.lang.String methodName, ConstraintMatcher args, java.lang.Object result)
void
Mock. expectAndThrow(java.lang.String methodName, ConstraintMatcher args, java.lang.Throwable exception)
void
Mock. expectVoid(java.lang.String methodName, ConstraintMatcher args)
Deprecated.void
Mock. matchAndReturn(java.lang.String methodName, ConstraintMatcher args, boolean result)
void
Mock. matchAndReturn(java.lang.String methodName, ConstraintMatcher args, int result)
void
Mock. matchAndReturn(java.lang.String methodName, ConstraintMatcher args, java.lang.Object result)
void
Mock. matchAndThrow(java.lang.String methodName, ConstraintMatcher args, java.lang.Throwable throwable)
Constructors in com.mockobjects.dynamic with parameters of type ConstraintMatcher Constructor Description CallSignature(java.lang.String methodName, ConstraintMatcher constraints, Callable delegate)
-