Home
last modified time | relevance | path

Searched refs:m_testClass (Results 1 – 9 of 9) sorted by relevance

/external/testng/src/main/java/org/testng/
DTestClass.java79 m_testClass = cls.getRealClass(); in init()
126 ITestNGMethod[] methods = m_testMethodFinder.getTestMethods(m_testClass, m_xmlTest); in initMethods()
131 .createSuiteConfigurationMethods(m_testMethodFinder.getBeforeSuiteMethods(m_testClass), in initMethods()
136 .createSuiteConfigurationMethods(m_testMethodFinder.getAfterSuiteMethods(m_testClass), in initMethods()
141 … .createTestConfigurationMethods(m_testMethodFinder.getBeforeTestConfigurationMethods(m_testClass), in initMethods()
146 … .createTestConfigurationMethods(m_testMethodFinder.getAfterTestConfigurationMethods(m_testClass), in initMethods()
151 .createClassConfigurationMethods(m_testMethodFinder.getBeforeClassMethods(m_testClass), in initMethods()
156 .createClassConfigurationMethods(m_testMethodFinder.getAfterClassMethods(m_testClass), in initMethods()
161 …eateBeforeConfigurationMethods(m_testMethodFinder.getBeforeGroupsConfigurationMethods(m_testClass), in initMethods()
166 …createAfterConfigurationMethods(m_testMethodFinder.getAfterGroupsConfigurationMethods(m_testClass), in initMethods()
[all …]
/external/testng/src/main/java/org/testng/internal/
DTestResult.java24 private IClass m_testClass = null; field in TestResult
69 m_testClass = testClass; in init()
71 m_instanceName = m_testClass.getName(); in init()
131 if (m_testClass.getTestName() != null) { in getTestName()
132 return m_testClass.getTestName(); in getTestName()
183 return m_testClass; in getTestClass()
190 m_testClass = testClass; in setTestClass()
DNoOpTestClass.java12 protected Class m_testClass= null; field in NoOpTestClass
38 m_testClass= testClass.getRealClass(); in NoOpTestClass()
165 return m_testClass.getName(); in getName()
170 return m_testClass; in getRealClass()
181 m_testClass = declaringClass; in setTestClass()
DBaseTestMethod.java38 protected ITestClass m_testClass; field in BaseTestMethod
124 return m_testClass; in getTestClass()
137 m_testClass = tc; in setTestClass()
192 return m_testClass.getInstanceHashCodes(); in getInstanceHashCodes()
416 boolean isEqual = m_testClass == null ? other.m_testClass == null in equals()
417 : other.m_testClass != null && in equals()
418 m_testClass.getRealClass().equals(other.m_testClass.getRealClass()) in equals()
506 return m_testClass; in getIClass()
DTestMethodWithDataProviderMethodWorker.java21 private ITestClass m_testClass; field in TestMethodWithDataProviderMethodWorker
51 m_testClass = testClass; in TestMethodWithDataProviderMethodWorker()
81 m_testClass, in call()
97 instance, m_testMethod, m_xmlSuite, m_testClass, m_beforeMethods, in call()
DFactoryMethod.java61 m_testClass = tc; in FactoryMethod()
DTestNGMethod.java183 clone.m_testClass= testClass; in clone()
DConfigurationMethod.java428 clone.m_testClass= getTestClass(); in clone()
/external/testng/src/main/java/org/testng/internal/annotations/
DBaseAnnotation.java7 private Class m_testClass; field in BaseAnnotation
24 return m_testClass; in getTestClass()
27 m_testClass = testClass; in setTestClass()