|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use IExpectationSetters | |
|---|---|
| org.easymock | |
| org.easymock.internal | |
| Uses of IExpectationSetters in org.easymock |
|---|
| Methods in org.easymock that return IExpectationSetters | ||
|---|---|---|
IExpectationSetters<T> |
IExpectationSetters.andAnswer(IAnswer<? extends T> answer)
Sets an object that will be used to calculate the answer for the expected invocation (either return a value, or throw an exception). |
|
IExpectationSetters<T> |
IExpectationSetters.andDelegateTo(Object delegateTo)
Sets an object implementing the same interface as the mock. |
|
IExpectationSetters<T> |
IExpectationSetters.andReturn(T value)
Sets a return value that will be returned for the expected invocation. |
|
IExpectationSetters<T> |
IExpectationSetters.andThrow(Throwable throwable)
Sets a throwable that will be thrown for the expected invocation. |
|
IExpectationSetters<T> |
IExpectationSetters.anyTimes()
Expect the last invocation any times. |
|
IExpectationSetters<T> |
IExpectationSetters.atLeastOnce()
Expect the last invocation at least once. |
|
static
|
EasyMock.expect(T value)
Returns the expectation setter for the last expected invocation in the current thread. |
|
static
|
EasyMock.expectLastCall()
Returns the expectation setter for the last expected invocation in the current thread. |
|
IExpectationSetters<T> |
IExpectationSetters.once()
Expect the last invocation once. |
|
IExpectationSetters<T> |
IExpectationSetters.times(int count)
Expect the last invocation count times. |
|
IExpectationSetters<T> |
IExpectationSetters.times(int min,
int max)
Expect the last invocation between min and max
times. |
|
| Uses of IExpectationSetters in org.easymock.internal |
|---|
| Classes in org.easymock.internal that implement IExpectationSetters | |
|---|---|
class |
MocksControl
|
| Methods in org.easymock.internal that return IExpectationSetters | |
|---|---|
IExpectationSetters<Object> |
MocksControl.andAnswer(IAnswer<? extends Object> answer)
|
IExpectationSetters<Object> |
MocksControl.andDelegateTo(Object answer)
|
IExpectationSetters<Object> |
MocksControl.andReturn(Object value)
|
IExpectationSetters<Object> |
MocksControl.andThrow(Throwable throwable)
|
IExpectationSetters<Object> |
MocksControl.anyTimes()
|
IExpectationSetters<Object> |
MocksControl.atLeastOnce()
|
IExpectationSetters<Object> |
MocksControl.once()
|
IExpectationSetters<Object> |
MocksControl.times(int times)
|
IExpectationSetters<Object> |
MocksControl.times(int min,
int max)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||