retest.annotation.params.RandomParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retest Show documentation
Show all versions of retest Show documentation
ReTest is a JUnit extension perform Randomic Test with ease and simplicity.
It supports method parameters with Test annotation and much more.
The newest version!
package retest.annotation.params;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import retest.datatype.DataType;
import retest.datatype.RandomSeedDataType;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE, ElementType.PARAMETER})
public @interface RandomParam {
String name() default "";
Class extends DataType> randomizerClass() default RandomSeedDataType.class;
}