Searched refs:IDataProviderAnnotation (Results 1 – 13 of 13) sorted by relevance
/external/testng/src/main/java/org/testng/internal/ |
D | DataProviderHolder.java | 3 import org.testng.annotations.IDataProviderAnnotation; 13 IDataProviderAnnotation annotation; 15 public DataProviderHolder(IDataProviderAnnotation annotation, Method method, Object instance) { in DataProviderHolder()
|
D | Parameters.java | 21 import org.testng.annotations.IDataProviderAnnotation; 324 IDataProviderAnnotation dp = finder.findAnnotation(m, IDataProviderAnnotation.class); in findDataProvider() 343 private static String getDataProviderName(IDataProviderAnnotation dp, Method m) { in getDataProviderName()
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | DataProviderAnnotation.java | 3 import org.testng.annotations.IDataProviderAnnotation; 13 implements IDataProviderAnnotation
|
D | JDK15AnnotationFinder.java | 29 import org.testng.annotations.IDataProviderAnnotation; 63 m_annotationMap.put(IDataProviderAnnotation.class, DataProvider.class); in JDK15AnnotationFinder() 160 else if (a instanceof IDataProviderAnnotation) { in transform() 161 transformer2.transform((IDataProviderAnnotation) a, testMethod); in transform()
|
D | AnnotationHelper.java | 12 import org.testng.annotations.IDataProviderAnnotation; 171 IDataProviderAnnotation.class, IExpectedExceptionsAnnotation.class,
|
D | JDK15TagFactory.java | 27 import org.testng.annotations.IDataProviderAnnotation; 57 else if (annotationClass == IDataProviderAnnotation.class) { in createTag()
|
/external/testng/src/main/java/org/testng/ |
D | IAnnotationTransformer2.java | 4 import org.testng.annotations.IDataProviderAnnotation; 38 public void transform(IDataProviderAnnotation annotation, Method method); in transform()
|
/external/testng/src/test/java/test/annotationtransformer/ |
D | ConfigurationTransformer.java | 5 import org.testng.annotations.IDataProviderAnnotation; 30 public void transform(IDataProviderAnnotation annotation, Method testMethod) { in transform()
|
D | DataProviderTransformer.java | 5 import org.testng.annotations.IDataProviderAnnotation; 21 public void transform(IDataProviderAnnotation annotation, Method testMethod) { in transform()
|
D | FactoryTransformer.java | 5 import org.testng.annotations.IDataProviderAnnotation; 21 public void transform(IDataProviderAnnotation annotation, Method testMethod) { in transform()
|
D | MyListenerTransformer.java | 5 import org.testng.annotations.IDataProviderAnnotation; 25 public void transform(IDataProviderAnnotation annotation, Method method) {} in transform()
|
/external/testng/src/test/java/test/mannotation/ |
D | MAnnotationSampleTest.java | 6 import org.testng.annotations.IDataProviderAnnotation; 186 IDataProviderAnnotation dataProvider = in verifyDataProvider() 187 (IDataProviderAnnotation) m_finder.findAnnotation(method, IDataProviderAnnotation.class); in verifyDataProvider()
|
/external/testng/src/main/java/org/testng/annotations/ |
D | IDataProviderAnnotation.java | 9 public interface IDataProviderAnnotation extends IAnnotation { interface
|