Package com.mockobjects.dynamic
Interface CallFactory
-
- All Known Implementing Classes:
DefaultCallFactory
public interface CallFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallablecreateCallExpectation(Callable call)CallablecreateCallSignature(java.lang.String methodName, ConstraintMatcher constraints, Callable call)CallablecreateReturnStub(java.lang.Object result)CallablecreateThrowStub(java.lang.Throwable throwable)CallablecreateVoidStub()
-
-
-
Method Detail
-
createReturnStub
Callable createReturnStub(java.lang.Object result)
-
createThrowStub
Callable createThrowStub(java.lang.Throwable throwable)
-
createVoidStub
Callable createVoidStub()
-
createCallSignature
Callable createCallSignature(java.lang.String methodName, ConstraintMatcher constraints, Callable call)
-
-