Searched refs:getAllLocations (Results 1 – 4 of 4) sorted by relevance
26 import static org.mockito.internal.invocation.InvocationsFinder.getAllLocations;38 List<Location> allLocations = getAllLocations(actualInvocations); in checkNumberOfInvocations()42 throw neverWantedButInvoked(wanted, getAllLocations(actualInvocations)); in checkNumberOfInvocations()45 …throw tooManyActualInvocations(wantedCount, actualCount, wanted, getAllLocations(actualInvocations… in checkNumberOfInvocations()57 List<Location> allLocations = getAllLocations(chunk); in checkNumberOfInvocations()61 … throw tooManyActualInvocationsInOrder(wantedCount, actualCount, wanted, getAllLocations(chunk)); in checkNumberOfInvocations()
20 import static org.mockito.internal.invocation.InvocationsFinder.getAllLocations;29 List<Location> allLocations = getAllLocations(actualInvocations); in checkAtLeastNumberOfInvocations()42 List<Location> allLocations = getAllLocations(chunk); in checkAtLeastNumberOfInvocations()
191 List<Location> all = InvocationsFinder.getAllLocations(invocations); in shouldFindAllStackTraces()197 …Assertions.assertThat(InvocationsFinder.getAllLocations(Collections.<Invocation>emptyList())).isEm… in shouldNotFindLocationsForEmptyInvocationsList()
141 public static List<Location> getAllLocations(List<Invocation> invocations) { in getAllLocations() method in InvocationsFinder