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

org.needle4j.injection.InjectionProviderInstancesSupplier Maven / Gradle / Ivy

Go to download

Needle is a lightweight framework for testing Java EE components outside of the container in isolation. It reduces the test setup code by analysing dependencies and automatic injection of mock objects. It will thus maximize the speed of development as well as the execution of unit tests.

The newest version!
package org.needle4j.injection;

import org.needle4j.NeedleTestcase;

import java.util.Set;

/**
 * Supplies a Set of InjectionProvider instances.
 *
 * @author Jan Galinski, Holisticon AG
 */
public interface InjectionProviderInstancesSupplier {
  /**
   * Supplies a Set of InjectionProvider instances.
   *
   * @return InjectionProviders that can be added to {@link NeedleTestcase}
   */
  Set> get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy