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.java423 … "But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':", in noMoreInteractionsWanted()
433 … "But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':", in noMoreInteractionsWantedInOrder()
496 …"The default answer of " + safelyGetMockName(mock) + " that was configured on the mock is probably… in wrongTypeReturnedByDefaultAnswer()
681 … "Mockito couldn't inject mock dependency '" + safelyGetMockName(matchingMock) + "' on field ", in cannotInjectDependency()
724 … " -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()", in invalidArgumentPositionRangeAtInvocationTime()
758 … " -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()", in wrongTypeOfArgumentToReturn()
795 "When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock), in delegatedMethodHasWrongReturnType()
805 "When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock), in delegatedMethodDoesNotExistOnDelegate()
833 private static MockName safelyGetMockName(Object mock) { in safelyGetMockName() method in Reporter