Package org.testng
Interface IDataProviderMethod
-
public interface IDataProviderMethodRepresents the attributes of aDataProviderannotated method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Integer>getIndices()Which indices to run from this data provider, default: all.ObjectgetInstance()MethodgetMethod()StringgetName()The name of this DataProvider.booleanisParallel()Whether this data provider should be run in parallel.
-
-
-
Method Detail
-
getInstance
Object getInstance()
- Returns:
- - The instance to which the data provider belongs to.
nullif the data provider is a static one.
-
getMethod
Method getMethod()
- Returns:
- - A
Methodobject that represents the actual @DataProvidermethod.
-
getName
String getName()
The name of this DataProvider.
-
isParallel
boolean isParallel()
Whether this data provider should be run in parallel.
-
-