Home
last modified time | relevance | path

Searched refs:delegateMethod (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
DForwardsInvocations.java36 Method delegateMethod = getDelegateMethod(mockMethod); in answer() local
38 … if (!compatibleReturnTypes(mockMethod.getReturnType(), delegateMethod.getReturnType())) { in answer()
39 …throw delegatedMethodHasWrongReturnType(mockMethod, delegateMethod, invocation.getMock(), delegate… in answer()
43 return delegateMethod.invoke(delegatedObject, rawArguments); in answer()
/external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/util/
DReflectionHelpers.java79 … Method delegateMethod = delegateClass.getMethod(method.getName(), method.getParameterTypes());
80 delegateMethod.setAccessible(true);
81 return delegateMethod.invoke(delegate, args);
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java811 …xception delegatedMethodHasWrongReturnType(Method mockMethod, Method delegateMethod, Object mock, … in delegatedMethodHasWrongReturnType() argument
815 …be: " + mockMethod.getReturnType().getSimpleName() + ", but was: " + delegateMethod.getReturnType(… in delegatedMethodHasWrongReturnType()