Searched refs:delegateMethod (Results 1 – 3 of 3) sorted by relevance
/external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/ |
D | ForwardsInvocations.java | 36 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/ |
D | ReflectionHelpers.java | 79 … 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/ |
D | Reporter.java | 811 …xception delegatedMethodHasWrongReturnType(Method mockMethod, Method delegateMethod, Object mock, … in delegatedMethodHasWrongReturnType() argument 815 …be: " + mockMethod.getReturnType().getSimpleName() + ", but was: " + delegateMethod.getReturnType(… in delegatedMethodHasWrongReturnType()
|