blob: ee905fa9e52d539fc394ec1b8c1966ba04865e29 [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;
/**
* Allow the ongoing injection of a mock candidate.
*/
public interface OngoingInjecter {
/**
* Inject the mock.
*
* <p>
* Please check the actual implementation.
* </p>
*
* @return the mock that was injected, <code>null</code> otherwise.
*/
Object thenInject();
}