Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java440 … "But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':", in noMoreInteractionsWanted()
450 … "But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':", in noMoreInteractionsWantedInOrder()
516 …"The default answer of " + safelyGetMockName(mock) + " that was configured on the mock is probably… in wrongTypeReturnedByDefaultAnswer()
700 … "Mockito couldn't inject mock dependency '" + safelyGetMockName(matchingMock) + "' on field ", in cannotInjectDependency()
743 … " -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()", in invalidArgumentPositionRangeAtInvocationTime()
777 … " -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()", in wrongTypeOfArgumentToReturn()
814 "When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock), in delegatedMethodHasWrongReturnType()
824 "When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock), in delegatedMethodDoesNotExistOnDelegate()
852 private static MockName safelyGetMockName(Object mock) { in safelyGetMockName() method in Reporter