name.falgout.jeffrey.testing.junit.guice.SharedInjectors Maven / Gradle / Ivy
package name.falgout.jeffrey.testing.junit.guice;
import org.junit.jupiter.api.extension.ExtendWith;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Documented
@Retention(RUNTIME)
@Target({TYPE, METHOD})
@Inherited
@ExtendWith(GuiceExtension.class)
public @interface SharedInjectors {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy