All Downloads are FREE. Search and download functionalities are using the official Maven repository.

retest.annotation.params.RandomParam Maven / Gradle / Ivy

Go to download

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 randomizerClass() default RandomSeedDataType.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy