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

cucumber.api.needle.InjectionProviderInstancesSupplier Maven / Gradle / Ivy

There is a newer version: 6.11.0
Show newest version
package cucumber.api.needle;

import cucumber.runtime.java.needle.NeedleFactory;
import de.akquinet.jbosscc.needle.NeedleTestcase;
import de.akquinet.jbosscc.needle.injection.InjectionProvider;

import java.util.Set;

/**
 * Supplies a Set of
 * InjectionProvider instances that are created outside the {@link NeedleFactory} lifecycle.
 */
public interface InjectionProviderInstancesSupplier {

    /**
     * Supplies a Set of
     * InjectionProvider instances that are created outside the {@link NeedleFactory} lifecycle.
     *
     * @return InjectionProviders that can be added to {@link NeedleTestcase}
     */
    Set> get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy