Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java26 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()
DAtLeastXNumberOfInvocationsChecker.java20 import static org.mockito.internal.invocation.InvocationsFinder.getAllLocations;
29 List<Location> allLocations = getAllLocations(actualInvocations); in checkAtLeastNumberOfInvocations()
42 List<Location> allLocations = getAllLocations(chunk); in checkAtLeastNumberOfInvocations()
/external/mockito/src/test/java/org/mockito/internal/invocation/
DInvocationsFinderTest.java191 List<Location> all = InvocationsFinder.getAllLocations(invocations); in shouldFindAllStackTraces()
197 …Assertions.assertThat(InvocationsFinder.getAllLocations(Collections.<Invocation>emptyList())).isEm… in shouldNotFindLocationsForEmptyInvocationsList()
/external/mockito/src/main/java/org/mockito/internal/invocation/
DInvocationsFinder.java141 public static List<Location> getAllLocations(List<Invocation> invocations) { in getAllLocations() method in InvocationsFinder