Searched full:includedmethods (Results 1 – 11 of 11) sorted by relevance
/external/testng/src/main/java/org/testng/xml/ |
D | XmlClass.java | 115 * @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/ |
D | testng-single.yaml | 9 # includedMethods: [ a ] 12 # includedMethods: [ junitParsing ]
|
D | testng.yaml | 198 includedMethods: 248 includedMethods:
|
D | testng-single2.yaml | 40 includedMethods: [test1, test2]
|
/external/testng/src/main/java/org/testng/internal/ |
D | MethodGroupsHelper.java | 154 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()
|
D | XmlMethodSelector.java | 146 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()
|
D | MethodInstance.java | 90 private XmlInclude findXmlInclude(List<XmlInclude> includedMethods, String methodName) { 91 for (XmlInclude xi : includedMethods) {
|
D | MethodHelper.java | 51 List<ITestNGMethod> includedMethods = Lists.newArrayList(); in collectAndOrderMethods() local 54 includedMethods, in collectAndOrderMethods() local 60 return sortMethods(forTests, includedMethods, finder).toArray(new ITestNGMethod[]{}); in collectAndOrderMethods()
|
D | Yaml.java | 188 result.append(sp2 + " includedMethods:\n"); in toYaml()
|
/external/testng/src/test/resources/yaml/ |
D | a2.yaml | 36 includedMethods: [test1, test2]
|
/external/testng/src/main/java/org/testng/ |
D | TestRunner.java | 689 List<XmlInclude> includedMethods = cim.getXmlClass(tc).getIncludedMethods(); in privateRunJUnit() 691 for (XmlInclude inc: includedMethods) { in privateRunJUnit()
|