Home
last modified time | relevance | path

Searched refs:m_excludedMethods (Results 1 – 3 of 3) sorted by relevance

/external/testng/src/main/java/org/testng/remote/strprotocol/
DSuiteMessage.java23 private List<String> m_excludedMethods = Lists.newArrayList(); field in SuiteMessage
38 m_excludedMethods = Lists.newArrayList(); in SuiteMessage()
42 m_excludedMethods.add(methodName); in SuiteMessage()
49 m_excludedMethods = Lists.newArrayList(); in setExcludedMethods()
50 m_excludedMethods.addAll(methods); in setExcludedMethods()
54 return m_excludedMethods; in getExcludedMethods()
84 if (m_excludedMethods != null && m_excludedMethods.size() > 0) { in getMessageAsString()
86 buf.append(m_excludedMethods.size()); in getMessageAsString()
87 for (String method : m_excludedMethods) { in getMessageAsString()
/external/testng/src/main/java/org/testng/xml/
DXmlClass.java24 private List<String> m_excludedMethods = Lists.newArrayList(); field in XmlClass
104 return m_excludedMethods; in getExcludedMethods()
111 m_excludedMethods = excludedMethods; in setExcludedMethods()
161 boolean hasMethods = !m_includedMethods.isEmpty() || !m_excludedMethods.isEmpty(); in toXml()
238 + ((m_excludedMethods == null) ? 0 : m_excludedMethods.hashCode()); in hashCode()
258 } else if (!m_excludedMethods.equals(other.m_excludedMethods)) { in equals()
/external/testng/src/main/java/org/testng/
DTestRunner.java127 private List<ITestNGMethod> m_excludedMethods = Lists.newArrayList(); field in TestRunner
487 m_excludedMethods); in initMethods()
494 m_excludedMethods); in initMethods()
501 m_excludedMethods); in initMethods()
509 m_excludedMethods); in initMethods()
516 m_excludedMethods); in initMethods()
1332 for (ITestNGMethod m : m_excludedMethods) { in getExcludedMethods()