
org.needle4j.processor.AbstractNeedleProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of needle4j Show documentation
Show all versions of needle4j Show documentation
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.processor;
import org.needle4j.injection.InjectionConfiguration;
import static org.needle4j.common.Preconditions.checkArgument;
public abstract class AbstractNeedleProcessor implements NeedleProcessor {
protected InjectionConfiguration configuration;
public AbstractNeedleProcessor(final InjectionConfiguration configuration) {
checkArgument(configuration != null, "configuration must not be null");
this.configuration = configuration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy