![JAR search and dependency download from the Maven repository](/logo.png)
io.rivulet.fuzz.Sink Maven / Gradle / Ivy
The newest version!
package io.rivulet.fuzz;
import java.lang.annotation.Repeatable;
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 a sink method that should be used for a particular test case or test class. */
@Repeatable(Sinks.class)
@Retention(RUNTIME)
@Target({METHOD, TYPE})
public @interface Sink {
String method();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy