Uses of Interface
org.easymock.IMocksControl
-
Packages that use IMocksControl Package Description org.easymock org.easymock.internal -
-
Uses of IMocksControl in org.easymock
Fields in org.easymock with type parameters of type IMocksControl Modifier and Type Field Description protected java.util.List<IMocksControl>
EasyMockSupport. controls
List of all controls createdMethods in org.easymock that return IMocksControl Modifier and Type Method Description static IMocksControl
EasyMock. createControl()
Creates a control, order checking is disabled by default.static IMocksControl
EasyMock. createControl(MockType type)
Creates a control of the requested type.IMocksControl
EasyMockSupport. createControl()
Creates a control, order checking is disabled by default.IMocksControl
EasyMockSupport. createControl(MockType type)
Creates a control of the given type.static IMocksControl
EasyMock. createNiceControl()
Creates a control, order checking is disabled by default, and the mock objects created by this control will return0
,null
orfalse
for unexpected invocations.IMocksControl
EasyMockSupport. createNiceControl()
Creates a control, order checking is disabled by default, and the mock objects created by this control will return0
,null
orfalse
for unexpected invocations.static IMocksControl
EasyMock. createStrictControl()
Creates a control, order checking is enabled by default.IMocksControl
EasyMockSupport. createStrictControl()
Creates a control, order checking is enabled by default.Methods in org.easymock with parameters of type IMocksControl Modifier and Type Method Description T
IMockBuilder. createMock(java.lang.String name, IMocksControl control)
Create named mock from the provided mock control using the arguments passed to the builder.T
IMockBuilder. createMock(IMocksControl control)
Create mock from the provided mock control using the arguments passed to the builder. -
Uses of IMocksControl in org.easymock.internal
Classes in org.easymock.internal that implement IMocksControl Modifier and Type Class Description class
MocksControl
Methods in org.easymock.internal with parameters of type IMocksControl Modifier and Type Method Description T
MockBuilder. createMock(java.lang.String name, IMocksControl control)
T
MockBuilder. createMock(IMocksControl control)
-