T
- Type of the interface for testingpublic class ExpectProxy<T> extends Object implements InvocationHandler
Limitation:
First implementation supports just a method name checking
Constructor and Description |
---|
ExpectProxy() |
Modifier and Type | Method and Description |
---|---|
ExpectProxy<T> |
expect(String methodName)
Program the expected method call.
|
ExpectProxy<T> |
expectAndReturn(String methodName,
Object retVal)
Program the expected function call.
|
ExpectProxy<T> |
expectAndThrow(String methodName,
Throwable throwEx)
Program the expected method call.
|
T |
getProxy(Class<T> clazz)
Return the Proxy implementation of the Interface.
|
Object |
invoke(Object proxy,
Method method,
Object[] args)
The InvocationHandler method.
|
boolean |
isDone()
Test that all expected was called in the order.
|
public ExpectProxy<T> expectAndReturn(String methodName, Object retVal)
methodName
- the expected method nameretVal
- the expected return value or proxypublic ExpectProxy<T> expect(String methodName)
methodName
- the expected method namepublic ExpectProxy<T> expectAndThrow(String methodName, Throwable throwEx)
methodName
- the expected method namethrowEx
- the expected exceptionpublic boolean isDone()
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable
invoke
in interface InvocationHandler
Throwable
Copyright © 2018–2025. All rights reserved.