
smallcheck.annotations.From Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-smallcheck Show documentation
Show all versions of java-smallcheck Show documentation
An implementation of SmallCheck for Java as a JUnit extension.
The newest version!
package smallcheck.annotations;
import smallcheck.generators.SeriesGen;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE})
public @interface From {
/**
* @return the generator used for generating values of the annotated type
*/
Class extends SeriesGen>> value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy