Home
last modified time | relevance | path

Searched full:includedgroups (Results 1 – 12 of 12) sorted by relevance

/external/testng/src/test/resources/
Dtestng.yaml6 includedGroups: [ nopackage ]
135 includedGroups: [ outer-group ]
141 includedGroups: [ inner-group ]
228 includedGroups: [ group1, group2 ]
296 includedGroups: [ group1 ]
301 includedGroups: [ unittest ]
321 includedGroups: [ A, B ]
340 includedGroups: [ a ]
346 includedGroups: [ a ]
Dtestng-single2.yaml26 includedGroups: [A, B]
/external/testng/src/main/java/org/testng/internal/
DXmlMethodSelector.java68 Map<String, String> includedGroups = m_includedGroups; in includeMethodFromIncludeExclude() local
76 if (includedGroups.size() == 0 && excludedGroups.size() == 0 in includeMethodFromIncludeExclude()
87 else if (includedGroups.size() == 0 && excludedGroups.size() == 0 && ! isTestMethod) in includeMethodFromIncludeExclude()
268 * @return Returns the includedGroups.
282 * @param includedGroups The includedGroups to set.
284 public void setIncludedGroups(Map<String, String> includedGroups) { in setIncludedGroups() argument
285 m_includedGroups = includedGroups; in setIncludedGroups()
288 private static boolean isIncluded(String[] groups, Collection<String> includedGroups) { in isIncluded() argument
289 if (includedGroups.size() == 0) { in isIncluded()
293 return isMemberOf(groups, includedGroups); in isIncluded()
DMethodGroupsHelper.java156 String[] includedGroups, in findGroupTransitiveClosure() argument
165 for (String thisGroup : includedGroups) { in findGroupTransitiveClosure()
DConstants.java25 // public static final String PROP_INCLUDED_GROUPS = NAMESPACE + "." + "includedGroups";
DYaml.java139 result.append(sp2).append("includedGroups: [ ") in toYaml()
/external/testng/src/test/resources/yaml/
Da2.yaml21 includedGroups: [A, B]
/external/testng/src/test/java/test/
DTest1.java20 public void includedGroups() { in includedGroups() method in Test1
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter2.java612 private final String includedGroups; field in EmailableReporter2.TestResult
642 includedGroups = formatGroups(context.getIncludedGroups()); in TestResult()
759 return includedGroups; in getIncludedGroups()
/external/testng/src/main/java/org/testng/xml/
DXmlTest.java124 * @return the includedGroups.
DXmlSuite.java961 * @return Returns the includedGroups.
/external/testng/doc/
Ddocumentation-main.html823 … also specify a <tt>testng.xml</tt> file, with the exception of <tt>-includedgroups</tt> and <tt>-…