/external/testng/src/main/java/org/testng/internal/ |
D | XmlMethodSelector.java | 69 Map<String, String> excludedGroups = m_excludedGroups; 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() 261 * @return Returns the excludedGroups. 275 * @param excludedGroups The excludedGroups to set. 277 public void setExcludedGroups(Map<String, String> excludedGroups) { in setExcludedGroups() argument 278 m_excludedGroups = excludedGroups; in setExcludedGroups() 297 private static boolean isExcluded(String[] groups, Collection<String> excludedGroups) { in isExcluded() argument 298 return isMemberOf(groups, excludedGroups); in isExcluded()
|
D | OverrideProcessor.java | 20 public OverrideProcessor(String[] groups, String[] excludedGroups) { in OverrideProcessor() argument 22 m_excludedGroups = excludedGroups; in OverrideProcessor()
|
D | Constants.java | 26 // public static final String PROP_EXCLUDED_GROUPS = NAMESPACE + "." + "excludedGroups";
|
D | Yaml.java | 145 result.append(sp2).append("excludedGroups: [ ") in toYaml()
|
/external/testng/src/test/java/test/commandline/ |
D | CommandLineOverridesXml.java | 31 private void runTest(String group, String excludedGroups, List<String> methods) { in runTest() argument 36 if (excludedGroups != null) tng.setExcludedGroups(excludedGroups); in runTest()
|
/external/testng/src/test/resources/ |
D | testng.yaml | 11 excludedGroups: [ excludeThisGroup ] 25 excludedGroups: [ broken ] 103 excludedGroups: [ excludeThisGroup ]
|
D | testng-single.yaml | 6 excludedGroups: [ excludeThisGroup ]
|
D | testng-single2.yaml | 27 excludedGroups: [C, D]
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | CommandLineArgs.java | 37 @Parameter(names = "-excludedgroups", description ="Comma-separated list of group names to be " + 39 public String excludedGroups; field in CommandLineArgs
|
/external/testng/src/test/resources/yaml/ |
D | a1.yaml | 22 excludedGroups: [ broken ]
|
D | a2.yaml | 22 excludedGroups: [C, D]
|
/external/testng/src/test/java/test/ |
D | Test1.java | 94 public void excludedGroups() { in excludedGroups() method in Test1
|
/external/testng/src/main/java/org/testng/ |
D | TestNG.java | 499 …* If used together with threadCount, parallel, groups, excludedGroups than this one must be set fi… 1439 setExcludedGroups(cla.excludedGroups); in configure() 1576 result.excludedGroups = (String) cmdLineArgs.get(CommandLineArgs.EXCLUDED_GROUPS); in configure() 1749 String excludedGroups = args.excludedGroups; in validateCommandLineParameters() local 1752 (null != groups || null != excludedGroups) && testClasses == null in validateCommandLineParameters()
|
D | CommandLineArgs.java | 29 public String excludedGroups; field in CommandLineArgs
|
D | TestNGAntTask.java | 54 * <li>excludedGroups (attribute)</li>
|
/external/testng/src/main/java/org/testng/reporters/ |
D | EmailableReporter2.java | 613 private final String excludedGroups; field in EmailableReporter2.TestResult 643 excludedGroups = formatGroups(context.getExcludedGroups()); in TestResult() 763 return excludedGroups; in getExcludedGroups()
|
/external/testng/doc/ |
D | ant.html | 113 <td><tt>excludedgroups</tt></td>
|
D | documentation-main.html | 823 …l</tt> file, with the exception of <tt>-includedgroups</tt> and <tt>-excludedgroups</tt>, which wi… 2733 excludedGroups: [ broken ]
|
/external/testng/src/main/java/org/testng/xml/ |
D | XmlTest.java | 219 * @return Returns the excludedGroups.
|
D | XmlSuite.java | 992 * @return Returns the excludedGroups.
|
/external/testng/ |
D | CHANGES.txt | 451 Fixed: "excludedgroups" was not working on the ant task because of a typo 808 Fixed: ant task correctly deals with empty groups and excludedgroups parameters
|