Package org.testng.annotations
Interface IDataProviderAnnotation
-
- All Superinterfaces:
IAnnotation
- All Known Implementing Classes:
DataProviderAnnotation
public interface IDataProviderAnnotation extends IAnnotation
Encapsulate the @DataProvider / @testng.data-provider annotation Created on Dec 20, 2005- Author:
- Cedric Beust
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Integer>
getIndices()
String
getName()
The name of this DataProvider.boolean
isParallel()
Whether this data provider should be used in parallel.void
setIndices(List<Integer> indices)
void
setName(String name)
void
setParallel(boolean parallel)
-