Home
last modified time | relevance | path

Searched refs:m_excludedGroups (Results 1 – 6 of 6) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DOverrideProcessor.java18 private String[] m_excludedGroups; field in OverrideProcessor
22 m_excludedGroups = excludedGroups; in OverrideProcessor()
35 if (m_excludedGroups != null && m_excludedGroups.length > 0) { in process()
38 t.getExcludedGroups().addAll(Arrays.asList(m_excludedGroups)); in process()
DXmlMethodSelector.java34 private Map<String, String> m_excludedGroups = Maps.newHashMap(); field in XmlMethodSelector
69 Map<String, String> excludedGroups = m_excludedGroups; in includeMethodFromIncludeExclude()
109 boolean isExcludedInGroups = isExcluded(groups, m_excludedGroups.values()); in includeMethodFromIncludeExclude()
264 return m_excludedGroups; in getExcludedGroups()
278 m_excludedGroups = excludedGroups; in setExcludedGroups()
/external/testng/src/main/java/org/testng/xml/
DXmlTest.java37 private List<String> m_excludedGroups = Lists.newArrayList(); field in XmlTest
215 m_excludedGroups = g; in setExcludedGroups()
223 List<String> result = new ArrayList(m_excludedGroups); in getExcludedGroups()
233 m_excludedGroups.add(g); in addExcludedGroup()
499 if (!m_metaGroups.isEmpty() || !m_includedGroups.isEmpty() || !m_excludedGroups.isEmpty() in toXml()
524 if (!m_includedGroups.isEmpty() || !m_excludedGroups.isEmpty()) { in toXml()
534 for (String excludeGroupName: m_excludedGroups) { in toXml()
611 for (String g : m_excludedGroups) { in toString()
735 + ((m_excludedGroups == null) ? 0 : m_excludedGroups.hashCode()); in hashCode()
778 if (m_excludedGroups == null) { in equals()
[all …]
DXmlSuite.java142 private List<String> m_excludedGroups = Lists.newArrayList(); field in XmlSuite
988 m_excludedGroups = g; in setExcludedGroups()
999 return m_excludedGroups; in getExcludedGroups()
1004 m_excludedGroups.add(g); in addExcludedGroup()
/external/testng/src/main/java/org/testng/
DTestNG.java131 private String[] m_excludedGroups; field in TestNG
416 result.setPostProcessor(new OverrideProcessor(m_includedGroups, m_excludedGroups)); in initProcessor()
659 m_excludedGroups = Utils.split(groups, ","); in setExcludedGroups()
869 boolean hasExcludedGroups = null != m_excludedGroups && m_excludedGroups.length > 0; in initializeCommandLineSuitesGroups()
879 t.setExcludedGroups(Arrays.asList(m_excludedGroups)); in initializeCommandLineSuitesGroups()
DTestNGAntTask.java145 protected String m_excludedGroups; field in TestNGAntTask
407 m_excludedGroups= groups; in setExcludedGroups()
551 addStringIfNotBlank(argv, CommandLineArgs.EXCLUDED_GROUPS, m_excludedGroups); in createArguments()