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

net.thucydides.junit.annotations.UseTestDataFrom Maven / Gradle / Ivy

The newest version!
package net.thucydides.junit.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Indicates that data-driven tests can and should be run in parallel.
 * You can optionally indicate the number of threads to use. If not specified,
 * a sensible value based on the number of processors will be used.
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface UseTestDataFrom {
   String value();
   char separator() default ',';
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy