
io.probedock.junitee.annotations.Finder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junitee-data-utils Show documentation
Show all versions of junitee-data-utils Show documentation
JUnit data utilities to manage data in a database when doing tests like API tests against an
application in application server.
The newest version!
package io.probedock.junitee.annotations;
import io.probedock.junitee.finder.IFinder;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is used to configure finders for a test method
*
* @author Laurent Prevost
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Finder {
/**
* @return List of data generators to use
*/
Class extends IFinder>[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy