Home
last modified time | relevance | path

Searched refs:m_xmlDependencyGroups (Results 1 – 2 of 2) sorted by relevance

/external/testng/src/main/java/org/testng/xml/
DXmlDependencies.java13 private Map<String, String> m_xmlDependencyGroups = Maps.newHashMap(); field in XmlDependencies
17 m_xmlDependencyGroups.put(name, dependsOn); in onGroup()
21 return m_xmlDependencyGroups; in getDependencies()
26 boolean hasElements = hasElements(m_xmlDependencyGroups); in toXml()
30 for (Map.Entry<String, String> entry : m_xmlDependencyGroups.entrySet()) { in toXml()
DXmlTest.java59 private Map<String, String> m_xmlDependencyGroups = Maps.newHashMap(); field in XmlTest
500 || !m_xmlDependencyGroups.isEmpty()) { in toXml()
545 if (m_xmlDependencyGroups != null && ! m_xmlDependencyGroups.isEmpty()) { in toXml()
547 for (Map.Entry<String, String> entry : m_xmlDependencyGroups.entrySet()) { in toXml()
867 if (! m_xmlDependencyGroups.containsKey(group)) { in addXmlDependencyGroup()
868 m_xmlDependencyGroups.put(group, dependsOn); in addXmlDependencyGroup()
885 return m_xmlDependencyGroups; in getXmlDependencyGroups()