T
- type of the mock createdpublic class MockBuilder<T> extends Object implements IMockBuilder<T>
The original idea and part of the code where contributed by Rodrigo Damazio and Bruno Fonseca at Google
Constructor and Description |
---|
MockBuilder(Class<?> toMock) |
MockBuilder(Class<?> toMock,
EasyMockSupport support)
Used by EasyMockSupport to allow the mock registration in the list of
controls
|
Modifier and Type | Method and Description |
---|---|
IMockBuilder<T> |
addMockedMethod(Method method)
Adds a method to be mocked in the testing class.
|
IMockBuilder<T> |
addMockedMethod(String methodName)
Adds a method to be mocked in the testing class.
|
IMockBuilder<T> |
addMockedMethod(String methodName,
Class<?>... parameterTypes)
Adds a method to be mocked in the testing class.
|
IMockBuilder<T> |
addMockedMethods(Method... methods)
Adds methods to be mocked in the testing class.
|
IMockBuilder<T> |
addMockedMethods(String... methodNames)
Adds methods to be mocked in the testing class.
|
<R> R |
createMock()
Create a default mock from this builder.
|
<R> R |
createMock(IMocksControl control)
Create mock from the provided mock control using the arguments passed to
the builder.
|
<R> R |
createMock(MockType type)
Create mock of the request type from this builder.
|
<R> R |
createMock(String name)
Create named mock from the provided mock control using the arguments
passed to the builder.
|
<R> R |
createMock(String name,
IMocksControl control)
Create named mock from the provided mock control using the arguments
passed to the builder.
|
<R> R |
createMock(String name,
MockType type)
Create a named mock of the request type from this builder.
|
<R> R |
createNiceMock()
Create a nice mock from this builder.
|
<R> R |
createNiceMock(String name)
Create a named nice mock from this builder.
|
<R> R |
createStrictMock()
Create a strict mock from this builder.
|
<R> R |
createStrictMock(String name)
Create a named strict mock from this builder.
|
IMockBuilder<T> |
withArgs(Object... initArgs)
Defines the arguments to be passed to the constructor of the class.
|
IMockBuilder<T> |
withConstructor()
Defines the empty constructor should be called.
|
IMockBuilder<T> |
withConstructor(Class<?>... argTypes)
Defines the exact argument types for the constructor to use.
|
IMockBuilder<T> |
withConstructor(Constructor<?> constructor)
Defines the constructor to use to instantiate the mock.
|
IMockBuilder<T> |
withConstructor(ConstructorArgs constructorArgs) |
IMockBuilder<T> |
withConstructor(Object... initArgs)
Defines the constructor parameters for the mocked class.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
mock, mock, mock, mock, mock, mock, niceMock, niceMock, strictMock, strictMock
public MockBuilder(Class<?> toMock)
public MockBuilder(Class<?> toMock, EasyMockSupport support)
toMock
- The class of the mock to createsupport
- The EasyMockSupport used to create mocks. Null if nonepublic IMockBuilder<T> addMockedMethod(Method method)
IMockBuilder
addMockedMethod
in interface IMockBuilder<T>
method
- method to be mockedpublic IMockBuilder<T> addMockedMethod(String methodName)
IMockBuilder
addMockedMethod
s in this class if that is the case.addMockedMethod
in interface IMockBuilder<T>
methodName
- name of the method to be mockedpublic IMockBuilder<T> addMockedMethod(String methodName, Class<?>... parameterTypes)
IMockBuilder
addMockedMethod
in interface IMockBuilder<T>
methodName
- name of the method to be mockedparameterTypes
- types of the parameters of the methodpublic IMockBuilder<T> addMockedMethods(String... methodNames)
IMockBuilder
IMockBuilder.addMockedMethod(String)
but to mock many methods at once.addMockedMethods
in interface IMockBuilder<T>
methodNames
- names of the methods to be mockedpublic IMockBuilder<T> addMockedMethods(Method... methods)
IMockBuilder
IMockBuilder.addMockedMethod(Method)
but to mock many methods at once.addMockedMethods
in interface IMockBuilder<T>
methods
- methods to be mockedpublic IMockBuilder<T> withConstructor(Constructor<?> constructor)
IMockBuilder
IMockBuilder.withArgs(java.lang.Object...)
with the actual constructor argument
values after this.withConstructor
in interface IMockBuilder<T>
constructor
- the constructor to be calledpublic IMockBuilder<T> withConstructor(ConstructorArgs constructorArgs)
public IMockBuilder<T> withConstructor()
IMockBuilder
withConstructor
in interface IMockBuilder<T>
public IMockBuilder<T> withConstructor(Object... initArgs)
IMockBuilder
withConstructor
in interface IMockBuilder<T>
initArgs
- arguments of the constructorpublic IMockBuilder<T> withConstructor(Class<?>... argTypes)
IMockBuilder
IMockBuilder.withArgs(java.lang.Object...)
with the actual constructor
argument values after this.withConstructor
in interface IMockBuilder<T>
argTypes
- the exact argument types of the constructorpublic IMockBuilder<T> withArgs(Object... initArgs)
IMockBuilder
IMockBuilder.withConstructor(Class...)
or
IMockBuilder.withConstructor(Constructor)
.withArgs
in interface IMockBuilder<T>
initArgs
- the arguments to pass to the constructorpublic <R> R createMock(MockType type)
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typetype
- the mock typepublic <R> R createMock(String name, MockType type)
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typename
- the mock nametype
- the mock typepublic <R> R createMock(IMocksControl control)
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typecontrol
- IMocksControl
used to create the objectpublic <R> R createMock()
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typepublic <R> R createNiceMock()
IMockBuilder
createNiceMock
in interface IMockBuilder<T>
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 typepublic <R> R createStrictMock()
IMockBuilder
createStrictMock
in interface IMockBuilder<T>
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 typepublic <R> R createMock(String name, IMocksControl control)
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typename
- the mock namecontrol
- IMocksControl
used to create the objectpublic <R> R createMock(String name)
IMockBuilder
createMock
in interface IMockBuilder<T>
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 typename
- the mock namepublic <R> R createNiceMock(String name)
IMockBuilder
createNiceMock
in interface IMockBuilder<T>
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 typename
- the mock namepublic <R> R createStrictMock(String name)
IMockBuilder
createStrictMock
in interface IMockBuilder<T>
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 typename
- the mock nameCopyright © 2001–2022 EasyMock contributors. All rights reserved.