
build.please.common.test.NotATest Maven / Gradle / Ivy
package build.please.common.test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Internal use only, to represent a class that should not be considered for JUnit testing (i.e. example code).
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface NotATest {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy