
com.trigonic.utils.test.junit.SuiteBaseClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-utils Show documentation
Show all versions of test-utils Show documentation
Provides utilities for testing
The newest version!
package com.trigonic.utils.test.junit;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface SuiteBaseClass {
/**
* @return the base class of the suite
*/
public Class> value();
/**
* @return the package name under which to search - if omitted, this will be the package of the base class
*/
public String packageName() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy