- setDefaultMatcher(ArgumentsMatcher) - Method in class org.easymock.MockControl
-
Sets the default ArgumentsMatcher for all methods of the mock object.
- setDefaultReturnValue(boolean) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by returning the provided
return value.
- setDefaultReturnValue(long) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by returning the provided
return value.
- setDefaultReturnValue(float) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by returning the provided
return value.
- setDefaultReturnValue(double) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by returning the provided
return value.
- setDefaultReturnValue(Object) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by returning the provided
return value.
- setDefaultThrowable(Throwable) - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call, and will react by throwing the provided
Throwable.
- setDefaultVoidCallable() - Method in class org.easymock.MockControl
-
Records that the mock object will by default allow the last method
specified by a method call.
- setMatcher(ArgumentsMatcher) - Method in class org.easymock.MockControl
-
Sets the ArgumentsMatcher for the last method called on the mock object.
- setReturnValue(boolean) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning the provided return value.
- setReturnValue(long) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning the provided return value.
- setReturnValue(float) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning the provided return value.
- setReturnValue(double) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning the provided return value.
- setReturnValue(Object) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning the provided return value.
- setReturnValue(boolean, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning the provided return value.
- setReturnValue(double, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning the provided return value.
- setReturnValue(float, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning the provided return value.
- setReturnValue(long, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning the provided return value.
- setReturnValue(Object, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning the provided return value.
- setReturnValue(boolean, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning the
provided return value.
- setReturnValue(double, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning the
provided return value.
- setReturnValue(float, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning the
provided return value.
- setReturnValue(long, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning the
provided return value.
- setReturnValue(Object, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning the
provided return value.
- setReturnValue(boolean, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning the provided return value.
- setReturnValue(long, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning the provided return value.
- setReturnValue(float, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning the provided return value.
- setReturnValue(double, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning the provided return value.
- setReturnValue(Object, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning the provided return value.
- setThrowable(Throwable) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by throwing the provided Throwable.
- setThrowable(Throwable, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by throwing the provided Throwable.
- setThrowable(Throwable, Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by throwing the
provided Throwable.
- setThrowable(Throwable, int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by throwing the provided Throwable.
- setVoidCallable() - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call once, and
will react by returning silently.
- setVoidCallable(int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call a fixed
number of times, and will react by returning silently.
- setVoidCallable(Range) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call the number
of times specified by the range argument, and will react by returning
silently.
- setVoidCallable(int, int) - Method in class org.easymock.MockControl
-
Records that the mock object will expect the last method call between
minCount
and maxCount
times, and will react
by returning silently.