Searched refs:AllInvocationsFinder (Results 1 – 8 of 8) sorted by relevance
7 import org.mockito.internal.invocation.finder.AllInvocationsFinder;18 for (Invocation i : AllInvocationsFinder.find(mocks)) { in getStubbingArgMismatches()22 for (Stubbing stubbing : AllInvocationsFinder.findStubbings(mocks)) { in getStubbingArgMismatches()
8 import org.mockito.internal.invocation.finder.AllInvocationsFinder;25 Set<Stubbing> stubbings = AllInvocationsFinder.findStubbings(mocks); in getUnusedStubbings()47 Set<Stubbing> stubbings = AllInvocationsFinder.findStubbings(mocks); in getUnusedStubbingsByLocation()
9 import org.mockito.internal.invocation.finder.AllInvocationsFinder;26 List<Invocation> all = AllInvocationsFinder.find(createdMocks); in getWarnings()
9 import org.mockito.internal.invocation.finder.AllInvocationsFinder;26 List<Invocation> invocations = AllInvocationsFinder.find(asList(mocks)); in printInvocations()
16 public class AllInvocationsFinder { class18 private AllInvocationsFinder() {} in AllInvocationsFinder() method in AllInvocationsFinder
22 List<Invocation> invocations = AllInvocationsFinder.find(mocks); in find()
10 import org.mockito.internal.invocation.finder.AllInvocationsFinder;26 Set<Stubbing> stubbings = AllInvocationsFinder.findStubbings(Collections.singleton(mock)); in stubbing_location_should_be_the_correct_point()
23 import static org.mockito.internal.invocation.finder.AllInvocationsFinder.find;24 import static org.mockito.internal.invocation.finder.AllInvocationsFinder.findStubbings;