com.oneandone.iocunit.analyzer.annotations.SutPackagesDeep Maven / Gradle / Ivy
package com.oneandone.iocunit.analyzer.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Signifies classes from the "system under test" which may be used to satisfy injection requirements when CDI gets started.
* The classes are defined as contained as part of the packages and subpackages of the classes provided in value.
*
* May clash with alternatives.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface SutPackagesDeep {
/**
* @return Array of classes to make discoverable during testing.
*/
public Class>[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy