Home
last modified time | relevance | path

Searched full:includedmethods (Results 1 – 11 of 11) sorted by relevance

/external/testng/src/main/java/org/testng/xml/
DXmlClass.java115 * @return Returns the includedMethods.
122 * @param includedMethods The includedMethods to set.
124 public void setIncludedMethods(List<XmlInclude> includedMethods) { in setIncludedMethods() argument
125 m_includedMethods = includedMethods; in setIncludedMethods()
/external/testng/src/test/resources/
Dtestng-single.yaml9 # includedMethods: [ a ]
12 # includedMethods: [ junitParsing ]
Dtestng.yaml198 includedMethods:
248 includedMethods:
Dtestng-single2.yaml40 includedMethods: [test1, test2]
/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()
DYaml.java188 result.append(sp2 + " includedMethods:\n"); in toYaml()
/external/testng/src/test/resources/yaml/
Da2.yaml36 includedMethods: [test1, test2]
/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()