com.fitbur.mockito.internal.invocation.UnusedStubsFinder Maven / Gradle / Ivy
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito.internal.invocation;
import com.fitbur.mockito.internal.InternalMockHandler;
import com.fitbur.mockito.internal.stubbing.StubbedInvocationMatcher;
import com.fitbur.mockito.internal.util.MockUtil;
import com.fitbur.mockito.invocation.Invocation;
import java.util.*;
public class UnusedStubsFinder {
/**
* Finds all unused stubs for given mocks
*
* @param mocks
*/
public List find(List> mocks) {
List unused = new LinkedList();
for (Object mock : mocks) {
InternalMockHandler
© 2015 - 2024 Weber Informatics LLC | Privacy Policy