java.lang.Object
org.easymock.internal.MocksControl
- All Implemented Interfaces:
Serializable
,IExpectationSetters<Object>
,IMocksControl
public class MocksControl
extends Object
implements IMocksControl, IExpectationSetters<Object>, Serializable
Controls all the mocks created by
EasyMock
. It contains the state of the mocks.- Author:
- OFFIS, Tammo Freese
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionSets an object that will be used to calculate the answer for the expected invocation (either return a value, or throw an exception).andDelegateTo
(Object answer) Sets an object implementing the same interface as the mock.Sets a return value that will be returned for the expected invocation.void
andStubAnswer
(IAnswer<?> answer) Sets a stub object that will be used to calculate the answer for the expected invocation (either return a value, or throw an exception).void
andStubDelegateTo
(Object delegateTo) Sets a stub object implementing the same interface as the mock.void
andStubReturn
(Object value) Sets a stub return value that will be returned for the expected invocation.void
andStubThrow
(Throwable throwable) Sets a stub throwable that will be thrown for the expected invocation.Sets a throwable that will be thrown for the expected invocation.andVoid()
Records a call but returns nothing.anyTimes()
Expect the last invocation any times.void
asStub()
Sets stub behavior for the expected invocation (this is needed for void methods).Expect the last invocation at least once.void
checkIsUsedInOneThread
(boolean shouldBeUsedInOneThread) Check that the mock is called from only one threadvoid
checkOrder
(boolean value) Switches order checking on and off.<T,
R> R createMock
(Class<T> toMock) Same asIMocksControl.mock(Class)
but using the old naming.<T,
R> R createMock
(String name, Class<T> toMock) Same asIMocksControl.mock(String, Class)
but using the old naming.<T,
R> R createMock
(String name, Class<T> toMock, ConstructorArgs constructorArgs, Method... mockedMethods) Same asIMocksControl.mock(String, Class, ConstructorArgs, Method...)
but using the old namingstatic MocksControl
getControl
(Object mock) static InvocationHandler
getInvocationHandler
(Object mock) static <T,
R extends T>
Class<R> getMockedClass
(T proxy) Return the class of interface (depending on the mock type) that was mockedstatic IProxyFactory
getState()
getType()
void
makeThreadSafe
(boolean threadSafe) Makes the mock thread safe.once()
Expect the last invocation once.void
replay()
Switches the control from record mode to replay mode.void
reset()
Removes all expectations for the mock objects of this control.void
Removes all expectations for the mock objects of this control and turn them to default mocks.void
Removes all expectations for the mock objects of this control and turn them to nice mocks.void
Removes all expectations for the mock objects of this control and turn them to strict mocks.times
(int times) Expect the last invocationcount
times.times
(int min, int max) Expect the last invocation betweenmin
andmax
times.void
verify()
Verifies that all expectations were met and that no unexpected call was performed.void
Verifies that all expectations were met.void
Verifies that no unexpected call was performed.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.easymock.IMocksControl
mock, mock, mock
-
Field Details
-
ONCE
Exactly one call. -
AT_LEAST_ONCE
One or more calls. -
ZERO_OR_MORE
Zero or more calls.
-
-
Constructor Details
-
MocksControl
-
-
Method Details
-
getType
-
getState
-
createMock
Description copied from interface:IMocksControl
Same asIMocksControl.mock(Class)
but using the old naming.- Specified by:
createMock
in interfaceIMocksControl
- Type Parameters:
T
- the interface or class that the mock object should implement/extend.R
- the returned type. In general T == R but when mocking a generic type, it won't so to be nice with the caller, we return a different type- Parameters:
toMock
- the interface or class that the mock object should implement/extend.- Returns:
- the mock object.
-
createMock
Description copied from interface:IMocksControl
Same asIMocksControl.mock(String, Class)
but using the old naming.- Specified by:
createMock
in interfaceIMocksControl
- Type Parameters:
T
- the interface or class that the mock object should implement/extend.R
- the returned type. In general T == R but when mocking a generic type, it won't so to be nice with the caller, we return a different type- Parameters:
name
- the name of the mock object.toMock
- the interface or class that the mock object should implement/extend.- Returns:
- the mock object.
-
createMock
public <T,R> R createMock(String name, Class<T> toMock, ConstructorArgs constructorArgs, Method... mockedMethods) Description copied from interface:IMocksControl
Same asIMocksControl.mock(String, Class, ConstructorArgs, Method...)
but using the old naming- Specified by:
createMock
in interfaceIMocksControl
- Type Parameters:
T
- the class that the mock object should extend.R
- the returned type. In general T == R but when mocking a generic type, it won't so to be nice with the caller, we return a different type- Parameters:
name
- the name of the mock object.toMock
- the class that the mock object should extend.constructorArgs
- constructor and parameters used to instantiate the mock. If null, no constructor will be calledmockedMethods
- methods that will be mocked, other methods will behave normally. If empty, all methods will be mocked- Returns:
- the mock object.
-
getProxyFactory
-
getControl
-
getInvocationHandler
-
getMockedClass
Return the class of interface (depending on the mock type) that was mocked- Type Parameters:
T
- Mocked classR
- Mock class- Parameters:
proxy
- Mock object- Returns:
- the mocked class or interface
-
reset
public void reset()Description copied from interface:IMocksControl
Removes all expectations for the mock objects of this control.- Specified by:
reset
in interfaceIMocksControl
-
resetToNice
public void resetToNice()Description copied from interface:IMocksControl
Removes all expectations for the mock objects of this control and turn them to nice mocks.- Specified by:
resetToNice
in interfaceIMocksControl
-
resetToDefault
public void resetToDefault()Description copied from interface:IMocksControl
Removes all expectations for the mock objects of this control and turn them to default mocks.- Specified by:
resetToDefault
in interfaceIMocksControl
-
resetToStrict
public void resetToStrict()Description copied from interface:IMocksControl
Removes all expectations for the mock objects of this control and turn them to strict mocks.- Specified by:
resetToStrict
in interfaceIMocksControl
-
replay
public void replay()Description copied from interface:IMocksControl
Switches the control from record mode to replay mode.- Specified by:
replay
in interfaceIMocksControl
-
verifyRecording
public void verifyRecording()Description copied from interface:IMocksControl
Verifies that all expectations were met.- Specified by:
verifyRecording
in interfaceIMocksControl
-
verifyUnexpectedCalls
public void verifyUnexpectedCalls()Description copied from interface:IMocksControl
Verifies that no unexpected call was performed.- Specified by:
verifyUnexpectedCalls
in interfaceIMocksControl
-
verify
public void verify()Description copied from interface:IMocksControl
Verifies that all expectations were met and that no unexpected call was performed. It has the same effect as callingIMocksControl.verifyRecording()
followed byIMocksControl.verifyUnexpectedCalls()
.- Specified by:
verify
in interfaceIMocksControl
-
checkOrder
public void checkOrder(boolean value) Description copied from interface:IMocksControl
Switches order checking on and off.- Specified by:
checkOrder
in interfaceIMocksControl
- Parameters:
value
-true
switches order checking on,false
switches it off.
-
makeThreadSafe
public void makeThreadSafe(boolean threadSafe) Description copied from interface:IMocksControl
Makes the mock thread safe.- Specified by:
makeThreadSafe
in interfaceIMocksControl
- Parameters:
threadSafe
- If the mock should be thread safe or not
-
checkIsUsedInOneThread
public void checkIsUsedInOneThread(boolean shouldBeUsedInOneThread) Description copied from interface:IMocksControl
Check that the mock is called from only one thread- Specified by:
checkIsUsedInOneThread
in interfaceIMocksControl
- Parameters:
shouldBeUsedInOneThread
- If it should be used in one thread only or not
-
andReturn
Description copied from interface:IExpectationSetters
Sets a return value that will be returned for the expected invocation.- Specified by:
andReturn
in interfaceIExpectationSetters<Object>
- Parameters:
value
- the value to return.- Returns:
- this object to allow method call chaining.
-
andThrow
Description copied from interface:IExpectationSetters
Sets a throwable that will be thrown for the expected invocation.- Specified by:
andThrow
in interfaceIExpectationSetters<Object>
- Parameters:
throwable
- the throwable to throw.- Returns:
- this object to allow method call chaining.
-
andAnswer
Description copied from interface:IExpectationSetters
Sets an object that will be used to calculate the answer for the expected invocation (either return a value, or throw an exception).- Specified by:
andAnswer
in interfaceIExpectationSetters<Object>
- Parameters:
answer
- the object used to answer the invocation.- Returns:
- this object to allow method call chaining.
-
andDelegateTo
Description copied from interface:IExpectationSetters
Sets an object implementing the same interface as the mock. The expected method call will be delegated to it with the actual arguments. The answer returned by this call will then be the answer returned by the mock (either return a value, or throw an exception).- Specified by:
andDelegateTo
in interfaceIExpectationSetters<Object>
- Parameters:
answer
- the object the call is delegated to.- Returns:
- the value returned by the delegated call.
-
andVoid
Description copied from interface:IExpectationSetters
Records a call but returns nothing. Used to chain calls on void methodsexpectLastCall().andThrow(e).andVoid()
- Specified by:
andVoid
in interfaceIExpectationSetters<Object>
- Returns:
- this object to allow method call chaining.
-
andStubReturn
Description copied from interface:IExpectationSetters
Sets a stub return value that will be returned for the expected invocation.- Specified by:
andStubReturn
in interfaceIExpectationSetters<Object>
- Parameters:
value
- the value to return.
-
andStubThrow
Description copied from interface:IExpectationSetters
Sets a stub throwable that will be thrown for the expected invocation.- Specified by:
andStubThrow
in interfaceIExpectationSetters<Object>
- Parameters:
throwable
- the throwable to throw.
-
andStubAnswer
Description copied from interface:IExpectationSetters
Sets a stub object that will be used to calculate the answer for the expected invocation (either return a value, or throw an exception).- Specified by:
andStubAnswer
in interfaceIExpectationSetters<Object>
- Parameters:
answer
- the object used to answer the invocation.
-
andStubDelegateTo
Description copied from interface:IExpectationSetters
Sets a stub object implementing the same interface as the mock. The expected method call will be delegated to it with the actual arguments. The answer returned by this call will then be the answer returned by the mock (either return a value, or throw an exception).- Specified by:
andStubDelegateTo
in interfaceIExpectationSetters<Object>
- Parameters:
delegateTo
- the object the call is delegated to.
-
asStub
public void asStub()Description copied from interface:IExpectationSetters
Sets stub behavior for the expected invocation (this is needed for void methods).- Specified by:
asStub
in interfaceIExpectationSetters<Object>
-
times
Description copied from interface:IExpectationSetters
Expect the last invocationcount
times.- Specified by:
times
in interfaceIExpectationSetters<Object>
- Parameters:
times
- the number of invocations expected- Returns:
- this object to allow method call chaining.
-
times
Description copied from interface:IExpectationSetters
Expect the last invocation betweenmin
andmax
times.- Specified by:
times
in interfaceIExpectationSetters<Object>
- Parameters:
min
- the minimum number of invocations expected.max
- the maximum number of invocations expected.- Returns:
- this object to allow method call chaining.
-
once
Description copied from interface:IExpectationSetters
Expect the last invocation once. This is default in EasyMock.- Specified by:
once
in interfaceIExpectationSetters<Object>
- Returns:
- this object to allow method call chaining.
-
atLeastOnce
Description copied from interface:IExpectationSetters
Expect the last invocation at least once.- Specified by:
atLeastOnce
in interfaceIExpectationSetters<Object>
- Returns:
- this object to allow method call chaining.
-
anyTimes
Description copied from interface:IExpectationSetters
Expect the last invocation any times.- Specified by:
anyTimes
in interfaceIExpectationSetters<Object>
- Returns:
- this object to allow method call chaining.
-