/external/testng/src/test/java/test/mannotation/ |
D | MAnnotation2SampleTest.java | 6 import org.testng.annotations.ITestAnnotation; 28 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestGroupsInheritance() 35 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestGroupsInheritance() 47 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnGroupsInheritance() 54 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnGroupsInheritance() 67 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnMethodsInheritance() 74 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnMethodsInheritance() 98 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestEnabledInheritance() 104 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestEnabledInheritance()
|
D | MAnnotationSampleTest.java | 10 import org.testng.annotations.ITestAnnotation; 34 …ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(MTest1.class, ITestAnnotation.cl… in verifyTestClassLevel() 51 …ITestAnnotation test2 = (ITestAnnotation) m_finder.findAnnotation(MTest2.class, ITestAnnotation.cl… in verifyTestClassLevel() 67 … ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestMethodLevel() 90 …ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(constructor, ITestAnnotation.cla… in verifyTestConstructorLevel()
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | AnnotationHelper.java | 16 import org.testng.annotations.ITestAnnotation; 31 public static ITestAnnotation findTest(IAnnotationFinder finder, Class<?> cls) { in findTest() 32 return finder.findAnnotation(cls, ITestAnnotation.class); in findTest() 35 public static ITestAnnotation findTest(IAnnotationFinder finder, Method m) { in findTest() 36 return finder.findAnnotation(m, ITestAnnotation.class); in findTest() 39 public static ITestAnnotation findTest(IAnnotationFinder finder, ITestNGMethod m) { in findTest() 40 return finder.findAnnotation(m, ITestAnnotation.class); in findTest() 51 public static ITestAnnotation findTest(IAnnotationFinder finder, Constructor ctor) { in findTest() 52 return finder.findAnnotation(ctor, ITestAnnotation.class); in findTest() 168 ITestAnnotation.class, IConfigurationAnnotation.class, [all …]
|
D | ITest.java | 3 import org.testng.annotations.ITestAnnotation; 5 public interface ITest extends ITestAnnotation {
|
D | DefaultAnnotationTransformer.java | 4 import org.testng.annotations.ITestAnnotation; 14 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | JDK15AnnotationFinder.java | 35 import org.testng.annotations.ITestAnnotation; 68 m_annotationMap.put(ITestAnnotation.class, Test.class); in JDK15AnnotationFinder() 142 if (a instanceof ITestAnnotation) { in transform() 143 m_transformer.transform((ITestAnnotation) a, testClass, testConstructor, testMethod); in transform()
|
D | TestAnnotation.java | 4 import org.testng.annotations.ITestAnnotation; 13 public class TestAnnotation extends TestOrConfiguration implements ITestAnnotation {
|
/external/testng/src/main/java/org/testng/internal/ |
D | RegexpExpectedExceptionsHolder.java | 6 import org.testng.annotations.ITestAnnotation; 58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in getRegExp()
|
D | ExpectedExceptionsHolder.java | 7 import org.testng.annotations.ITestAnnotation; 35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in findExpectedClasses()
|
D | TestNGMethod.java | 5 import org.testng.annotations.ITestAnnotation; 95 ITestAnnotation testAnnotation = in init() 122 initGroups(ITestAnnotation.class); in init() 127 private String findDescription(ITestAnnotation testAnnotation, XmlTest xmlTest) { in findDescription()
|
D | ClassImpl.java | 17 import org.testng.annotations.ITestAnnotation; 67 ITestAnnotation annotation = m_annotationFinder.findAnnotation(cls, ITestAnnotation.class); in ClassImpl()
|
D | Utils.java | 32 import org.testng.annotations.ITestAnnotation; 284 ITestAnnotation tc = AnnotationHelper.findTest(finder, cls); in dependentGroupsForThisMethodForTest() 292 ITestAnnotation tm = AnnotationHelper.findTest(finder, m); in dependentGroupsForThisMethodForTest() 314 ITestAnnotation tc = AnnotationHelper.findTest(finder, cls); in groupsForThisMethodForTest() 322 ITestAnnotation tm = AnnotationHelper.findTest(finder, m); in groupsForThisMethodForTest() 343 ITestAnnotation tm = AnnotationHelper.findTest(finder, m); in groupsForThisMethodForConfiguration()
|
D | TestNGMethodFinder.java | 11 import org.testng.annotations.ITestAnnotation; 48 clazz, ITestAnnotation.class, m_annotationFinder, xmlTest); in getTestMethods()
|
/external/testng/src/main/java/org/testng/ |
D | IAnnotationTransformer.java | 3 import org.testng.annotations.ITestAnnotation; 28 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
/external/testng/src/test/java/test/annotationtransformer/ |
D | MyTimeOutTransformer.java | 4 import org.testng.annotations.ITestAnnotation; 12 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | AnnotationTransformerInTestngXml.java | 4 import org.testng.annotations.ITestAnnotation; 16 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | AnnotationTransformerInvocationCountTest.java | 4 import org.testng.annotations.ITestAnnotation; 21 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | MyTransformer.java | 4 import org.testng.annotations.ITestAnnotation; 16 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | MyParamTransformer.java | 4 import org.testng.annotations.ITestAnnotation; 14 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | ConfigurationTransformer.java | 7 import org.testng.annotations.ITestAnnotation; 15 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | DataProviderTransformer.java | 7 import org.testng.annotations.ITestAnnotation; 26 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | FactoryTransformer.java | 7 import org.testng.annotations.ITestAnnotation; 25 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
D | MyListenerTransformer.java | 8 import org.testng.annotations.ITestAnnotation; 31 public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, in transform()
|
/external/testng/src/test/java/test/tmp/ |
D | AnnotationTransformer.java | 7 import org.testng.annotations.ITestAnnotation; 17 public void transform(ITestAnnotation annotation, Class testClass, in transform()
|
/external/testng/src/test/java/test/listeners/ |
D | SuiteListener2.java | 4 import org.testng.annotations.ITestAnnotation; 35 …public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Me… in transform()
|