public interface PrivateMethodVerification
| Modifier and Type | Method and Description |
|---|---|
WithOrWithoutVerifiedArguments |
invoke(java.lang.reflect.Method method)
Verify calls to the specific method.
|
void |
invoke(java.lang.Object... arguments)
Deprecated.
Use
invoke(String, Object...) instead. Will be remove in PowerMock 3.0 |
void |
invoke(java.lang.String methodToVerify,
java.lang.Object... arguments)
Verify a private method call by specifying the method name of the method
to verify.
|
@Deprecated
void invoke(java.lang.Object... arguments)
throws java.lang.Exception
invoke(String, Object...) instead. Will be remove in PowerMock 3.0java.lang.Exception - If something unexpected goes wrong.WithOrWithoutVerifiedArguments invoke(java.lang.reflect.Method method) throws java.lang.Exception
java.lang.Exception - If something unexpected goes wrong.void invoke(java.lang.String methodToVerify,
java.lang.Object... arguments)
throws java.lang.Exception
java.lang.Exception - If something unexpected goes wrong.