static IMocksControl |
EasyMock.createControl(MockType type) |
Creates a control of the requested type.
|
IMocksControl |
EasyMockSupport.createControl(MockType type) |
Creates a control of the given type.
|
static <T> T |
EasyMock.createMock(java.lang.String name,
MockType type,
java.lang.Class<T> toMock) |
Creates a mock object, of the requested type and name, that implements the given interface
or extends the given class
|
static <T> T |
EasyMock.createMock(MockType type,
java.lang.Class<T> toMock) |
Creates a mock object, of the requested type, that implements the given interface
or extends the given class.
|
<T> T |
EasyMockSupport.createMock(java.lang.String name,
MockType type,
java.lang.Class<T> toMock) |
Creates a mock object of the requested type that implements the given interface or extends
the given class
|
<T> T |
EasyMockSupport.createMock(MockType type,
java.lang.Class<T> toMock) |
Creates a mock object of the requested type that implements the given interface or extends
the given class
|
T |
IMockBuilder.createMock(java.lang.String name,
MockType type) |
Create a named mock of the request type from this builder.
|
T |
IMockBuilder.createMock(MockType type) |
Create mock of the request type from this builder.
|
static <T> T |
EasyMock.mock(java.lang.String name,
MockType type,
java.lang.Class<T> toMock) |
Creates a mock object, of the requested type and name, that implements the given interface
or extends the given class
|
static <T> T |
EasyMock.mock(MockType type,
java.lang.Class<T> toMock) |
Creates a mock object, of the requested type, that implements the given interface
or extends the given class
|
<T> T |
EasyMockSupport.mock(java.lang.String name,
MockType type,
java.lang.Class<T> toMock) |
Creates a mock object of the requested type that implements the given interface or extends
the given class
|
<T> T |
EasyMockSupport.mock(MockType type,
java.lang.Class<T> toMock) |
Creates a mock object of the requested type that implements the given interface or extends
the given class
|