io.rivulet.fuzz.Sinks Maven / Gradle / Ivy
The newest version!
package io.rivulet.fuzz;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/* Specifies the set of sink methods that should be used for a particular test case or test class. */
@Retention(RUNTIME)
@Target({METHOD, TYPE})
public @interface Sinks {
Sink[] value();
}