Package org.testng
Interface IDataProviderMethod
-
public interface IDataProviderMethod
Represents the attributes of aDataProvider
annotated 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.Object
getInstance()
Method
getMethod()
String
getName()
The name of this DataProvider.boolean
isParallel()
Whether this data provider should be run in parallel.
-
-
-
Method Detail
-
getInstance
Object getInstance()
- Returns:
- - The instance to which the data provider belongs to.
null
if the data provider is a static one.
-
getMethod
Method getMethod()
- Returns:
- - A
Method
object that represents the actual @DataProvider
method.
-
getName
String getName()
The name of this DataProvider.
-
isParallel
boolean isParallel()
Whether this data provider should be run in parallel.
-
-