Home
last modified time | relevance | path

Searched refs:excludedGroups (Results 1 – 8 of 8) sorted by relevance

/external/testng/src/test/java/test/commandline/
DCommandLineOverridesXml.java31 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/main/java/org/testng/internal/
DXmlMethodSelector.java69 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()
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()
DOverrideProcessor.java20 public OverrideProcessor(String[] groups, String[] excludedGroups) { in OverrideProcessor() argument
22 m_excludedGroups = excludedGroups; in OverrideProcessor()
/external/jcommander/src/test/java/com/beust/jcommander/args/
DCommandLineArgs.java39 public String excludedGroups; field in CommandLineArgs
/external/testng/src/test/java/test/
DTest1.java94 public void excludedGroups() { in excludedGroups() method in Test1
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter2.java613 private final String excludedGroups; field in EmailableReporter2.TestResult
643 excludedGroups = formatGroups(context.getExcludedGroups()); in TestResult()
763 return excludedGroups; in getExcludedGroups()
/external/testng/src/main/java/org/testng/
DCommandLineArgs.java29 public String excludedGroups; field in CommandLineArgs
DTestNG.java1439 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()