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

io.probedock.junitee.annotations.Finder Maven / Gradle / Ivy

Go to download

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[] value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy