Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java25 import static org.mockito.internal.invocation.InvocationsFinder.findMatchingChunk;
52 List<Invocation> chunk = findMatchingChunk(invocations, wanted, wantedCount, context); in checkNumberOfInvocations()
/external/mockito/src/test/java/org/mockito/internal/invocation/
DInvocationsFinderTest.java155 …List<Invocation> chunk = InvocationsFinder.findMatchingChunk(invocations, new InvocationMatcher(si… in shouldFindMatchingChunk()
164 …List<Invocation> chunk = InvocationsFinder.findMatchingChunk(invocations, new InvocationMatcher(si… in shouldReturnAllChunksWhenModeIsAtLeastOnce()
173 …List<Invocation> chunk = InvocationsFinder.findMatchingChunk(invocations, new InvocationMatcher(si… in shouldReturnAllChunksWhenWantedCountDoesntMatch()
/external/mockito/src/main/java/org/mockito/internal/invocation/
DInvocationsFinder.java47 …public static List<Invocation> findMatchingChunk(List<Invocation> invocations, MatchableInvocation… in findMatchingChunk() method in InvocationsFinder