Home
last modified time | relevance | path

Searched refs:getExcludedMethods (Results 1 – 12 of 12) sorted by relevance

/external/testng/src/main/java/org/testng/reporters/jq/
DIgnoredMethodsPanel.java23 return pluralize(suite.getExcludedMethods().size(), "ignored method"); in getHeader()
31 for (ITestNGMethod method : suite.getExcludedMethods()) { in getContent()
/external/testng/src/main/java/org/testng/remote/strprotocol/
DSuiteMessage.java36 Collection<ITestNGMethod> excludedMethods = suite.getExcludedMethods(); in SuiteMessage()
53 public List<String> getExcludedMethods() { in getExcludedMethods() method in SuiteMessage
/external/testng/src/main/java/org/testng/xml/
DXmlClass.java103 public List<String> getExcludedMethods() { in getExcludedMethods() method in XmlClass
174 for (String m: getExcludedMethods()) { in toXml()
211 result.setExcludedMethods(getExcludedMethods()); in clone()
/external/testng/src/main/java/org/testng/
DISuite.java80 public Collection<ITestNGMethod> getExcludedMethods(); in getExcludedMethods() method
DITestContext.java99 public Collection<ITestNGMethod> getExcludedMethods(); in getExcludedMethods() method
DSuiteRunner.java488 public Collection<ITestNGMethod> getExcludedMethods() { in getExcludedMethods() method in SuiteRunner
496 … Collection<ITestNGMethod> methods = included ? tr.getInvokedMethods() : tr.getExcludedMethods(); in getIncludedOrExcludedMethods()
DTestRunner.java1329 public Collection<ITestNGMethod> getExcludedMethods() { in getExcludedMethods() method in TestRunner
/external/testng/src/test/java/test/simple/
DIncludedExcludedTest.java77 Collection<ITestNGMethod> excluded = suite.getExcludedMethods(); in generateReport()
/external/testng/src/main/java/org/testng/internal/
DXmlMethodSelector.java150 xmlClass.getExcludedMethods()); in includeMethodFromIncludeExclude()
196 if (xmlClass.getExcludedMethods().size() > 0) { in hasExcludedMethods()
DYaml.java183 List<String> em = xc.getExcludedMethods(); in toYaml()
/external/testng/src/main/java/org/testng/reporters/
DSuiteHTMLReporter.java175 Collection<ITestNGMethod> excluded = suite.getExcludedMethods(); in generateExcludedMethodsReport()
611 …ame' href='").append(METHODS_NOT_RUN).append("'>not run (" + suite.getExcludedMethods().size() + "… in generateTableOfContents()
/external/testng/src/test/java/test/
DBaseTest.java243 xmlClass.getExcludedMethods().add(m); in addExcludedMethod()