org.testng.annotations.DataProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.annotations;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Mark a method as supplying data for a test method. The data provider name
* defaults to method name.
* The annotated method must return an Object[][] where each
* Object[] can be assigned the parameter list of the test method.
* The @Test method that wants to receive data from this DataProvider
* needs to use a dataProvider name equals to the name of this annotation.
*
* @author cbeust
*/
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({METHOD})
public @interface DataProvider {
/**
* The name of this DataProvider.
*/
public String name() default "";
/**
* Whether this data provider should be run in parallel.
*/
boolean parallel() default false;
/**
* Which indices to run from this data provider, default: all.
*/
int[] indices() default {};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy