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

io.rivulet.fuzz.Sources 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 source methods that should be used for a particular test case or test class. */
@Retention(RUNTIME)
@Target({METHOD, TYPE})
public @interface Sources {
    Source[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy