Home
last modified time | relevance | path

Searched refs:ITestAnnotation (Results 1 – 25 of 33) sorted by relevance

12

/external/testng/src/test/java/test/mannotation/
DMAnnotation2SampleTest.java6 import org.testng.annotations.ITestAnnotation;
28ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestGroupsInheritance()
35ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestGroupsInheritance()
47ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnGroupsInheritance()
54ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnGroupsInheritance()
67ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnMethodsInheritance()
74ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestDependsOnMethodsInheritance()
98ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestEnabledInheritance()
104ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestEnabledInheritance()
DMAnnotationSampleTest.java10 import org.testng.annotations.ITestAnnotation;
34ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(MTest1.class, ITestAnnotation.cl… in verifyTestClassLevel()
51ITestAnnotation test2 = (ITestAnnotation) m_finder.findAnnotation(MTest2.class, ITestAnnotation.cl… in verifyTestClassLevel()
67ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class); in verifyTestMethodLevel()
90ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(constructor, ITestAnnotation.cla… in verifyTestConstructorLevel()
/external/testng/src/main/java/org/testng/internal/annotations/
DAnnotationHelper.java16 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 …]
DITest.java3 import org.testng.annotations.ITestAnnotation;
5 public interface ITest extends ITestAnnotation {
DDefaultAnnotationTransformer.java4 import org.testng.annotations.ITestAnnotation;
14 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DJDK15AnnotationFinder.java35 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()
DTestAnnotation.java4 import org.testng.annotations.ITestAnnotation;
13 public class TestAnnotation extends TestOrConfiguration implements ITestAnnotation {
/external/testng/src/main/java/org/testng/internal/
DRegexpExpectedExceptionsHolder.java6 import org.testng.annotations.ITestAnnotation;
58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in getRegExp()
DExpectedExceptionsHolder.java7 import org.testng.annotations.ITestAnnotation;
35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class); in findExpectedClasses()
DTestNGMethod.java5 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()
DClassImpl.java17 import org.testng.annotations.ITestAnnotation;
67 ITestAnnotation annotation = m_annotationFinder.findAnnotation(cls, ITestAnnotation.class); in ClassImpl()
DUtils.java32 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()
DTestNGMethodFinder.java11 import org.testng.annotations.ITestAnnotation;
48 clazz, ITestAnnotation.class, m_annotationFinder, xmlTest); in getTestMethods()
/external/testng/src/main/java/org/testng/
DIAnnotationTransformer.java3 import org.testng.annotations.ITestAnnotation;
28 public void transform(ITestAnnotation annotation, Class testClass, in transform()
/external/testng/src/test/java/test/annotationtransformer/
DMyTimeOutTransformer.java4 import org.testng.annotations.ITestAnnotation;
12 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DAnnotationTransformerInTestngXml.java4 import org.testng.annotations.ITestAnnotation;
16 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DAnnotationTransformerInvocationCountTest.java4 import org.testng.annotations.ITestAnnotation;
21 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DMyTransformer.java4 import org.testng.annotations.ITestAnnotation;
16 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DMyParamTransformer.java4 import org.testng.annotations.ITestAnnotation;
14 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DConfigurationTransformer.java7 import org.testng.annotations.ITestAnnotation;
15 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DDataProviderTransformer.java7 import org.testng.annotations.ITestAnnotation;
26 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DFactoryTransformer.java7 import org.testng.annotations.ITestAnnotation;
25 public void transform(ITestAnnotation annotation, Class testClass, in transform()
DMyListenerTransformer.java8 import org.testng.annotations.ITestAnnotation;
31 public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, in transform()
/external/testng/src/test/java/test/tmp/
DAnnotationTransformer.java7 import org.testng.annotations.ITestAnnotation;
17 public void transform(ITestAnnotation annotation, Class testClass, in transform()
/external/testng/src/test/java/test/listeners/
DSuiteListener2.java4 import org.testng.annotations.ITestAnnotation;
35 …public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Me… in transform()

12