Uses of Interface
org.testng.ISuite
-
Packages that use ISuite Package Description org.testng org.testng.internal org.testng.internal.thread.graph org.testng.reporters org.testng.reporters.jq -
-
Uses of ISuite in org.testng
Classes in org.testng that implement ISuite Modifier and Type Class Description class
SuiteRunner
SuiteRunner
is responsible for running all the tests included in one suite.Methods in org.testng that return ISuite Modifier and Type Method Description ISuite
ITestContext. getSuite()
ISuite
TestRunner. getSuite()
Methods in org.testng that return types with arguments of type ISuite Modifier and Type Method Description List<ISuite>
SuiteRunnerWorker. getTasks()
protected List<ISuite>
TestNG. runSuites()
Run the test suites.List<ISuite>
TestNG. runSuitesLocally()
This needs to be public for maven2, for now..At least until an alternative mechanism is found.Methods in org.testng with parameters of type ISuite Modifier and Type Method Description TestRunner
ITestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, Collection<IInvokedMethodListener> listeners, List<IClassListener> classListeners)
TestRunner
ITestRunnerFactory2. newTestRunner(ISuite suite, XmlTest test, Collection<IInvokedMethodListener> listeners, List<IClassListener> classListeners, Map<Class<? extends IDataProviderListener>,IDataProviderListener> dataProviderListeners)
Produces a newTestRunner
void
ISuiteListener. onFinish(ISuite suite)
This method is invoked after the SuiteRunner has run all the test suites.void
ISuiteListener. onStart(ISuite suite)
This method is invoked before the SuiteRunner starts.Method parameters in org.testng with type arguments of type ISuite Modifier and Type Method Description int
SuiteRunnerWorker. compareTo(IWorker<ISuite> arg0)
Constructors in org.testng with parameters of type ISuite Constructor Description SuiteRunnerWorker(ISuite suiteRunner, SuiteRunnerMap suiteRunnerMap, int verbose, String defaultSuiteName)
TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, boolean skipFailedInvocationCounts, Collection<IInvokedMethodListener> invokedMethodListeners, List<IClassListener> classListeners)
This constructor is used by testng-remote, any changes related to it please contact with testng-team.TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, boolean skipFailedInvocationCounts, Collection<IInvokedMethodListener> invokedMethodListeners, List<IClassListener> classListeners, Comparator<ITestNGMethod> comparator)
TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, String outputDirectory, IAnnotationFinder finder, boolean skipFailedInvocationCounts, Collection<IInvokedMethodListener> invokedMethodListeners, List<IClassListener> classListeners, Comparator<ITestNGMethod> comparator, Map<Class<? extends IDataProviderListener>,IDataProviderListener> dataProviderListeners)
-
Uses of ISuite in org.testng.internal
Methods in org.testng.internal that return ISuite Modifier and Type Method Description ISuite
SuiteRunnerMap. get(XmlSuite xmlSuite)
Methods in org.testng.internal that return types with arguments of type ISuite Modifier and Type Method Description Collection<ISuite>
SuiteRunnerMap. values()
Methods in org.testng.internal with parameters of type ISuite Modifier and Type Method Description void
SuiteRunnerMap. put(XmlSuite xmlSuite, ISuite suite)
-
Uses of ISuite in org.testng.internal.thread.graph
Methods in org.testng.internal.thread.graph that return types with arguments of type ISuite Modifier and Type Method Description List<IWorker<ISuite>>
SuiteWorkerFactory. createWorkers(List<ISuite> suites)
For each suite, creates aSuiteRunnerWorker
Method parameters in org.testng.internal.thread.graph with type arguments of type ISuite Modifier and Type Method Description List<IWorker<ISuite>>
SuiteWorkerFactory. createWorkers(List<ISuite> suites)
For each suite, creates aSuiteRunnerWorker
-
Uses of ISuite in org.testng.reporters
Methods in org.testng.reporters with parameters of type ISuite Modifier and Type Method Description protected void
FailedReporter. generateFailureSuite(XmlSuite xmlSuite, ISuite suite, String outputDir)
Method parameters in org.testng.reporters with type arguments of type ISuite Modifier and Type Method Description protected void
EmailableReporter. generateMethodDetailReport(List<ISuite> suites)
Creates a section showing known results for each methodprotected void
EmailableReporter. generateMethodSummaryReport(List<ISuite> suites)
Creates a table showing the highlights of each test method with links to the method detailsvoid
EmailableReporter. generateSuiteSummaryReport(List<ISuite> suites)
Constructors in org.testng.reporters with parameters of type ISuite Constructor Description SuiteResult(ISuite suite)
-
Uses of ISuite in org.testng.reporters.jq
Methods in org.testng.reporters.jq that return types with arguments of type ISuite Modifier and Type Method Description protected List<ISuite>
BasePanel. getSuites()
List<ISuite>
Model. getSuites()
Constructor parameters in org.testng.reporters.jq with type arguments of type ISuite Constructor Description Model(List<ISuite> suites)
-