OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getExcludedMethods
(Results
1 - 12
of
12
) sorted by null
/external/testng/src/main/java/org/testng/reporters/jq/
IgnoredMethodsPanel.java
23
return pluralize(suite.
getExcludedMethods
().size(), "ignored method");
31
for (ITestNGMethod method : suite.
getExcludedMethods
()) {
/external/testng/src/main/java/org/testng/remote/strprotocol/
SuiteMessage.java
36
Collection<ITestNGMethod> excludedMethods = suite.
getExcludedMethods
();
53
public List<String>
getExcludedMethods
() {
/external/testng/src/main/java/org/testng/
ISuite.java
80
public Collection<ITestNGMethod>
getExcludedMethods
();
ITestContext.java
99
public Collection<ITestNGMethod>
getExcludedMethods
();
SuiteRunner.java
485
* @see org.testng.ISuite#
getExcludedMethods
()
488
public Collection<ITestNGMethod>
getExcludedMethods
() {
496
Collection<ITestNGMethod> methods = included ? tr.getInvokedMethods() : tr.
getExcludedMethods
();
TestRunner.java
[
all
...]
/external/testng/src/test/java/test/simple/
IncludedExcludedTest.java
77
Collection<ITestNGMethod> excluded = suite.
getExcludedMethods
();
/external/testng/src/main/java/org/testng/xml/
XmlClass.java
103
public List<String>
getExcludedMethods
() {
174
for (String m:
getExcludedMethods
()) {
211
result.setExcludedMethods(
getExcludedMethods
());
/external/testng/src/main/java/org/testng/internal/
XmlMethodSelector.java
150
xmlClass.
getExcludedMethods
());
196
if (xmlClass.
getExcludedMethods
().size() > 0) {
Yaml.java
183
List<String> em = xc.
getExcludedMethods
();
/external/testng/src/main/java/org/testng/reporters/
SuiteHTMLReporter.java
175
Collection<ITestNGMethod> excluded = suite.
getExcludedMethods
();
611
.append(" <a target='mainFrame' href='").append(METHODS_NOT_RUN).append("'>not run (" + suite.
getExcludedMethods
().size() + ")</a>")
/external/testng/src/test/java/test/
BaseTest.java
243
xmlClass.
getExcludedMethods
().add(m);
Completed in 207 milliseconds