Home
last modified time | relevance | path

Searched refs:m_allTestMethods (Results 1 – 3 of 3) sorted by relevance

/external/testng/src/main/java/org/testng/
DTestListenerAdapter.java28 private List<ITestNGMethod> m_allTestMethods = field in TestListenerAdapter
41 m_allTestMethods.add(tr.getMethod()); in onTestSuccess()
47 m_allTestMethods.add(tr.getMethod()); in onTestFailure()
53 m_allTestMethods.add(tr.getMethod()); in onTestSkipped()
59 m_allTestMethods.add(tr.getMethod()); in onTestFailedButWithinSuccessPercentage()
64 return m_allTestMethods.toArray(new ITestNGMethod[m_allTestMethods.size()]); in getAllTestMethods()
108 m_allTestMethods = allTestMethods; in setAllTestMethods()
DTestRunner.java97 private ITestNGMethod[] m_allTestMethods = new ITestNGMethod[0]; field in TestRunner
496 m_allTestMethods = MethodHelper.collectAndOrderMethods(testMethods, in initMethods()
518 …m_groupMethods = new ConfigurationGroupMethods(m_allTestMethods, beforeGroupMethods, afterGroupMet… in initMethods()
715 if (m_allTestMethods.length == 1) { in privateRunJUnit()
716 return m_allTestMethods[0].getPriority(); in privateRunJUnit()
729 m_allTestMethods= runMethods.toArray(new ITestNGMethod[runMethods.size()]); in privateRunJUnit()
749 DynamicGraph<ITestNGMethod> graph = createDynamicGraph(intercept(m_allTestMethods)); in privateRun()
1319 return m_allTestMethods; in getAllTestMethods()
DSuiteRunner.java78 private List<ITestNGMethod> m_allTestMethods = Lists.newArrayList(); field in SuiteRunner
183 m_allTestMethods.addAll(Arrays.asList(tr.getAllTestMethods())); in init()
680 return m_allTestMethods; in getAllMethods()