Home | History | Annotate | Download | only in mannotation

Lines Matching refs:method

11 import java.lang.reflect.Method;
27 Method method = MTest3.class.getMethod("groups1", new Class[0]);
28 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
29 Assert.assertEqualsNoOrder(new String[] { "method-test3", "child-class-test3", "base-class" },
34 Method method = MTest3.class.getMethod("groups2", new Class[0]);
35 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
46 Method method = MTest3.class.getMethod("dependsOnGroups1", new Class[0]);
47 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
53 Method method = MTest3.class.getMethod("dependsOnGroups2", new Class[0]);
54 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
66 Method method = MTest3.class.getMethod("dependsOnMethods1", new Class[0]);
67 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
73 Method method = MTest3.class.getMethod("dependsOnMethods2", new Class[0]);
74 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
86 Method method = MTest3.class.getMethod("beforeSuite", new Class[0]);
87 IConfigurationAnnotation test1 = (IConfigurationAnnotation) m_finder.findAnnotation(method, IConfigurationAnnotation.class);
88 Assert.assertEqualsNoOrder(new String[] { "method-test3", "child-class-test3", "base-class" },
97 Method method = MTest3.class.getMethod("enabled1", new Class[0]);
98 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
103 Method method = MTest3.class.getMethod("enabled2", new Class[0]);
104 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(method, ITestAnnotation.class);
115 // Method method = MChildCaptureTest.class.getMethod("shouldBelongToGroupChild", new Class[0]);
116 // ITest test1 = (ITest) m_finder.findAnnotation(method, ITest.class);