All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.invocation.finder.VerifiableInvocationsFinder Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */

package org.mockito.internal.invocation.finder;

import org.mockito.internal.invocation.Invocation;
import org.mockito.internal.util.ListUtil;

import java.util.List;

/**
 * Author: Szczepan Faber, created at: 4/3/11
 */
public class VerifiableInvocationsFinder {

    public List find(List mocks) {
        List invocations = new AllInvocationsFinder().find(mocks);
        return ListUtil.filter(invocations, new RemoveIgnoredForVerification());
    }

    static class RemoveIgnoredForVerification implements ListUtil.Filter{
        public boolean isOut(Invocation i) {
            return i.isIgnoredForVerification();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy