blob: f407f826cb12a3af8a3afabbf3a1f8d10e8a3a58 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.configuration.injection.filter;
import java.lang.reflect.Field;
import java.util.Collection;
public interface MockCandidateFilter {
OngoingInjecter filterCandidate(
Collection<Object> mocks,
Field fieldToBeInjected,
Object fieldInstance
);
}