HomeSort by relevance Sort by last modified time
    Searched refs:wrongTypeOfReturnValue (Results 1 - 2 of 2) sorted by null

  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
Returns.java 14 import static org.mockito.internal.exceptions.Reporter.wrongTypeOfReturnValue;
37 throw wrongTypeOfReturnValue(invocationInfo.printMethodReturnType(), "null", invocationInfo.getMethodName());
41 throw wrongTypeOfReturnValue(invocationInfo.printMethodReturnType(), printReturnType(), invocationInfo.getMethodName());
  /external/mockito/src/main/java/org/mockito/internal/exceptions/
Reporter.java 495 public static MockitoException wrongTypeOfReturnValue(String expectedType, String actualType, String methodName) {
496 return new WrongTypeOfReturnValue(join(
511 return new WrongTypeOfReturnValue(join(
    [all...]

Completed in 158 milliseconds