Home
last modified time | relevance | path

Searched refs:m_includedGroups (Results 1 – 5 of 5) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DXmlMethodSelector.java33 private Map<String, String> m_includedGroups = Maps.newHashMap(); field in XmlMethodSelector
68 Map<String, String> includedGroups = m_includedGroups; in includeMethodFromIncludeExclude()
108 boolean isIncludedInGroups = isIncluded(groups, m_includedGroups.values()); in includeMethodFromIncludeExclude()
271 return m_includedGroups; in getIncludedGroups()
285 m_includedGroups = includedGroups; in setIncludedGroups()
343 String[] groups = m_includedGroups.keySet().toArray(new String[m_includedGroups.size()]); in init()
363 if (m_includedGroups.size() > 0) { in init()
367 + (m_includedGroups.containsKey(g) ? in init()
369 m_includedGroups.put(g, g); in init()
/external/testng/src/main/java/org/testng/xml/
DXmlTest.java36 private List<String> m_includedGroups = Lists.newArrayList(); field in XmlTest
134 result = Lists.newArrayList(m_includedGroups); in getIncludedGroups()
208 m_includedGroups = g; in setIncludedGroups()
229 m_includedGroups.add(g); in addIncludedGroup()
499 if (!m_metaGroups.isEmpty() || !m_includedGroups.isEmpty() || !m_excludedGroups.isEmpty() in toXml()
524 if (!m_includedGroups.isEmpty() || !m_excludedGroups.isEmpty()) { in toXml()
527 for (String includeGroupName: m_includedGroups) { in toXml()
605 for (String g : m_includedGroups) { in toString()
741 + ((m_includedGroups == null) ? 0 : m_includedGroups.hashCode()); in hashCode()
794 if (m_includedGroups == null) { in equals()
[all …]
DXmlSuite.java141 private List<String> m_includedGroups = Lists.newArrayList(); field in XmlSuite
969 return m_includedGroups; in getIncludedGroups()
974 m_includedGroups.add(g); in addIncludedGroup()
981 m_includedGroups = g; in setIncludedGroups()
/external/testng/src/main/java/org/testng/
DTestNGAntTask.java144 protected String m_includedGroups; field in TestNGAntTask
403 m_includedGroups= groups; in setGroups()
550 addStringIfNotBlank(argv, CommandLineArgs.GROUPS, m_includedGroups); in createArguments()
878 if((null != m_includedGroups) && (m_classFilesets.size() == 0 && suiteCount == 0)) { in validateOptions()
DTestNG.java130 private String[] m_includedGroups; field in TestNG
416 result.setPostProcessor(new OverrideProcessor(m_includedGroups, m_excludedGroups)); in initProcessor()
669 m_includedGroups = Utils.split(groups, ","); in setGroups()
868 boolean hasIncludedGroups = null != m_includedGroups && m_includedGroups.length > 0; in initializeCommandLineSuitesGroups()
876 t.setIncludedGroups(Arrays.asList(m_includedGroups)); in initializeCommandLineSuitesGroups()