Home
last modified time | relevance | path

Searched refs:includedMethods (Results 1 – 6 of 6) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DMethodGroupsHelper.java154 List<ITestNGMethod> includedMethods, in findGroupTransitiveClosure() argument
160 for (ITestNGMethod m : includedMethods) { in findGroupTransitiveClosure()
173 for (ITestNGMethod m : includedMethods) { in findGroupTransitiveClosure()
216 includedMethods = Lists.newArrayList(); in findGroupTransitiveClosure()
217 includedMethods.addAll(newMethods.keySet()); in findGroupTransitiveClosure()
DXmlMethodSelector.java146 List<String> includedMethods = in includeMethodFromIncludeExclude() local
148 boolean isIncludedInMethods = isIncluded(fullyQualifiedMethodName, includedMethods); in includeMethodFromIncludeExclude()
347 List<ITestNGMethod> includedMethods = Lists.newArrayList(); in init() local
350 includedMethods.add(m); in init()
353 MethodGroupsHelper.findGroupTransitiveClosure(this, includedMethods, m_testMethods, in init()
DMethodInstance.java90 private XmlInclude findXmlInclude(List<XmlInclude> includedMethods, String methodName) {
91 for (XmlInclude xi : includedMethods) {
DMethodHelper.java51 List<ITestNGMethod> includedMethods = Lists.newArrayList(); in collectAndOrderMethods() local
54 includedMethods, in collectAndOrderMethods() local
60 return sortMethods(forTests, includedMethods, finder).toArray(new ITestNGMethod[]{}); in collectAndOrderMethods()
/external/testng/src/main/java/org/testng/xml/
DXmlClass.java124 public void setIncludedMethods(List<XmlInclude> includedMethods) { in setIncludedMethods() argument
125 m_includedMethods = includedMethods; in setIncludedMethods()
/external/testng/src/main/java/org/testng/
DTestRunner.java689 List<XmlInclude> includedMethods = cim.getXmlClass(tc).getIncludedMethods(); in privateRunJUnit()
691 for (XmlInclude inc: includedMethods) { in privateRunJUnit()