Uses of Interface
org.testng.ISuite
-
Packages that use ISuite Package Description org.testng org.testng.internal.invokers org.testng.internal.thread org.testng.internal.thread.graph org.testng.reporters org.testng.reporters.jq org.testng.thread -
-
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.Fields in org.testng declared as ISuite Modifier and Type Field Description private ISuite
TestRunner. m_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 java.util.List<ISuite>
SuiteRunnerWorker. getTasks()
protected java.util.List<ISuite>
TestNG. runSuites()
Run the test suites.java.util.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 private void
TestRunner. init(IConfiguration configuration, ISuite suite, XmlTest test, java.lang.String outputDirectory, IAnnotationFinder annotationFinder, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, SuiteRunner suiteRunner)
TestRunner
ITestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners)
default TestRunner
ITestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, java.util.Map<java.lang.Class<? extends IDataProviderListener>,IDataProviderListener> dataProviderListeners)
Produces a newTestRunner
default TestRunner
ITestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, DataProviderHolder holder)
Produces a newTestRunner
TestRunner
SuiteRunner.DefaultTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners)
TestRunner
SuiteRunner.DefaultTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, java.util.Map<java.lang.Class<? extends IDataProviderListener>,IDataProviderListener> dataProviderListeners)
TestRunner
SuiteRunner.DefaultTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, DataProviderHolder holder)
TestRunner
SuiteRunner.ProxyTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners)
TestRunner
SuiteRunner.ProxyTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, java.util.Map<java.lang.Class<? extends IDataProviderListener>,IDataProviderListener> dataProviderListeners)
TestRunner
SuiteRunner.ProxyTestRunnerFactory. newTestRunner(ISuite suite, XmlTest test, java.util.Collection<IInvokedMethodListener> listeners, java.util.List<IClassListener> classListeners, DataProviderHolder holder)
default void
ISuiteListener. onFinish(ISuite suite)
This method is invoked after the SuiteRunner has run all the tests in the suite.default 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)
private void
TestNG. generateReports(java.util.List<ISuite> suiteRunners)
private void
TestNG. populateSuiteGraph(IDynamicGraph<ISuite> suiteGraph, SuiteRunnerMap suiteRunnerMap, XmlSuite xmlSuite)
Populates the dynamic graph with the reverse hierarchy of suites.Constructors in org.testng with parameters of type ISuite Constructor Description SuiteRunnerWorker(ISuite suiteRunner, SuiteRunnerMap suiteRunnerMap, int verbose, java.lang.String defaultSuiteName)
TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, java.util.Comparator<ITestNGMethod> comparator, SuiteRunner suiteRunner)
TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, SuiteRunner suiteRunner)
TestRunner(IConfiguration configuration, ISuite suite, XmlTest test, java.lang.String outputDirectory, IAnnotationFinder finder, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, java.util.Comparator<ITestNGMethod> comparator, DataProviderHolder otherHolder, SuiteRunner suiteRunner)
-
Uses of ISuite in org.testng.internal.invokers
Fields in org.testng.internal.invokers with type parameters of type ISuite Modifier and Type Field Description private java.util.Map<java.lang.String,ISuite>
SuiteRunnerMap. m_map
Methods in org.testng.internal.invokers that return ISuite Modifier and Type Method Description ISuite
SuiteRunnerMap. get(XmlSuite xmlSuite)
Methods in org.testng.internal.invokers that return types with arguments of type ISuite Modifier and Type Method Description java.util.Collection<ISuite>
SuiteRunnerMap. values()
Methods in org.testng.internal.invokers 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
Method parameters in org.testng.internal.thread with type arguments of type ISuite Modifier and Type Method Description ITestNGThreadPoolExecutor
DefaultThreadPoolExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
ITestNGThreadPoolExecutor
DefaultThreadPoolExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
ITestNGThreadPoolExecutor
DefaultThreadPoolExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
-
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 java.util.List<IWorker<ISuite>>
SuiteWorkerFactory. createWorkers(java.util.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 java.util.List<IWorker<ISuite>>
SuiteWorkerFactory. createWorkers(java.util.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 AbstractXmlReporter.Count
AbstractXmlReporter. computeCountForSuite(ISuite s)
private void
SuiteHTMLReporter. generateExcludedMethodsReport(XmlSuite xmlSuite, ISuite suite)
protected void
FailedReporter. generateFailureSuite(XmlSuite xmlSuite, ISuite suite, java.lang.String outputDir)
private void
SuiteHTMLReporter. generateIndex(XmlSuite xmlSuite, ISuite sr)
private void
SuiteHTMLReporter. generateMain(XmlSuite xmlSuite, ISuite sr)
private void
SuiteHTMLReporter. generateMethodsAndGroups(XmlSuite xmlSuite, ISuite suite)
Generate information about methods and groupsprivate void
SuiteHTMLReporter. generateMethodsChronologically(XmlSuite xmlSuite, ISuite suite, java.lang.String outputFileName, boolean alphabetical)
private void
SuiteHTMLReporter. generateSuites(XmlSuite xmlSuite, ISuite suite)
Writes a property file for each suite result.private void
SuiteHTMLReporter. generateTableOfContents(XmlSuite xmlSuite, ISuite suite)
private java.util.Collection<ITestNGMethod>
EmailableReporter. getMethodSet(IResultMap tests, ISuite suite)
Since the methods will be sorted chronologically, we want to return the ITestNGMethod from the invoked methods.private java.util.List<java.lang.String>
PerSuiteXMLReporter. getOutput(ISuite iSuite)
private java.util.Properties
AbstractXmlReporter. getSuiteAttributes(ISuite suite)
private java.lang.String
SuiteHTMLReporter. makeTitle(ISuite suite)
private java.io.File
AbstractXmlReporter. referenceSuite(XMLStringBuffer xmlBuffer, ISuite suite)
private void
EmailableReporter. resultSummary(ISuite suite, IResultMap tests, java.lang.String testname, java.lang.String style, java.lang.String details)
protected void
AbstractXmlReporter. writeSuite(XMLStringBuffer rootBuffer, ISuite suite)
private void
AbstractXmlReporter. writeSuiteGroups(XMLStringBuffer xmlBuffer, ISuite suite)
private void
AbstractXmlReporter. writeSuiteToBuffer(XMLStringBuffer xmlBuffer, ISuite suite)
private void
AbstractXmlReporter. writeSuiteToFile(java.io.File suiteFile, ISuite suite)
Method parameters in org.testng.reporters with type arguments of type ISuite Modifier and Type Method Description private void
SuiteHTMLReporter. generateIndex(java.util.List<ISuite> suites)
Generate the main index.html file that lists all the suites and their resultprotected void
EmailableReporter. generateMethodDetailReport(java.util.List<ISuite> suites)
Creates a section showing known results for each methodprotected void
EmailableReporter. generateMethodSummaryReport(java.util.List<ISuite> suites)
Creates a table showing the highlights of each test method with links to the method detailsvoid
EmailableReporter. generateSuiteSummaryReport(java.util.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
Fields in org.testng.reporters.jq declared as ISuite Modifier and Type Field Description protected ISuite
NavigatorPanel.BaseResultProvider. m_suite
Fields in org.testng.reporters.jq with type parameters of type ISuite Modifier and Type Field Description private java.util.Map<ISuite,ResultsByClass>
Model. m_failedResultsByClass
private ListMultiMap<ISuite,ITestResult>
Model. m_model
private java.util.Map<ISuite,ResultsByClass>
Model. m_passedResultsByClass
private java.util.Map<ISuite,ResultsByClass>
Model. m_skippedResultsByClass
private java.util.List<ISuite>
Model. m_suites
Methods in org.testng.reporters.jq that return types with arguments of type ISuite Modifier and Type Method Description protected java.util.List<ISuite>
BasePanel. getSuites()
java.util.List<ISuite>
Model. getSuites()
Methods in org.testng.reporters.jq with parameters of type ISuite Modifier and Type Method Description private void
NavigatorPanel. addLinkTo(XMLStringBuffer header, INavigatorPanel panel, ISuite suite)
private void
SuitePanel. generateClassPanel(java.lang.Class<?> c, java.util.List<ITestResult> results, XMLStringBuffer xsb, java.lang.String status, ISuite suite)
private void
NavigatorPanel. generateInfo(XMLStringBuffer header, ISuite suite)
private void
NavigatorPanel. generateResult(XMLStringBuffer header, int failed, int skipped, int passed, ISuite suite, java.lang.String suiteName)
private void
SuitePanel. generateSuitePanel(ISuite suite, XMLStringBuffer xsb)
java.util.List<ITestResult>
Model. getAllTestResults(ISuite suite)
java.util.List<ITestResult>
Model. getAllTestResults(ISuite suite, boolean testsOnly)
(package private) abstract java.lang.String
BaseMultiSuitePanel. getContent(ISuite suite, XMLStringBuffer xsb)
java.lang.String
ChronologicalPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
GroupPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
IgnoredMethodsPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
ReporterPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
TestNgXmlPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
TestPanel. getContent(ISuite suite, XMLStringBuffer main)
java.lang.String
TimesPanel. getContent(ISuite suite, XMLStringBuffer main)
ResultsByClass
Model. getFailedResultsByClass(ISuite suite)
(package private) abstract java.lang.String
BaseMultiSuitePanel. getHeader(ISuite suite)
java.lang.String
ChronologicalPanel. getHeader(ISuite suite)
java.lang.String
GroupPanel. getHeader(ISuite suite)
java.lang.String
IgnoredMethodsPanel. getHeader(ISuite suite)
java.lang.String
ReporterPanel. getHeader(ISuite suite)
java.lang.String
TestNgXmlPanel. getHeader(ISuite suite)
java.lang.String
TestPanel. getHeader(ISuite suite)
java.lang.String
TimesPanel. getHeader(ISuite suite)
private java.util.List<ITestResult>
NavigatorPanel. getMethodsByStatus(ISuite suite, int status, java.util.function.Predicate<ITestResult> condition)
java.lang.String
ChronologicalPanel. getNavigatorLink(ISuite suite)
java.lang.String
GroupPanel. getNavigatorLink(ISuite suite)
java.lang.String
IgnoredMethodsPanel. getNavigatorLink(ISuite suite)
java.lang.String
INavigatorPanel. getNavigatorLink(ISuite suite)
java.lang.String
ReporterPanel. getNavigatorLink(ISuite suite)
java.lang.String
TestNgXmlPanel. getNavigatorLink(ISuite suite)
java.lang.String
TestPanel. getNavigatorLink(ISuite suite)
java.lang.String
TimesPanel. getNavigatorLink(ISuite suite)
java.lang.String
BaseMultiSuitePanel. getPanelName(ISuite suite)
java.lang.String
INavigatorPanel. getPanelName(ISuite suite)
ResultsByClass
Model. getPassedResultsByClass(ISuite suite)
ResultsByClass
Model. getSkippedResultsByClass(ISuite suite)
java.util.List<ITestResult>
Model. getTestResults(ISuite suite)
private java.lang.String
TimesPanel. js(ISuite suite)
private long
TimesPanel. maxTime(ISuite suite)
protected static java.lang.String
BasePanel. suiteToTag(ISuite suite)
private void
Model. updateGroups(ISuite suite, ITestResult tr)
Constructors in org.testng.reporters.jq with parameters of type ISuite Constructor Description BaseResultProvider(ISuite suite, java.lang.String type)
ResultsByStatus(ISuite suite, java.lang.String type, int status)
ResultsByStatus(ISuite suite, java.lang.String type, int m_status, java.util.function.Predicate<ITestResult> condition)
Constructor parameters in org.testng.reporters.jq with type arguments of type ISuite Constructor Description Model(java.util.List<ISuite> suites)
-
Uses of ISuite in org.testng.thread
Method parameters in org.testng.thread with type arguments of type ISuite Modifier and Type Method Description ITestNGThreadPoolExecutor
IExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
ITestNGThreadPoolExecutor
IExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
ITestNGThreadPoolExecutor
IExecutorFactory. newSuiteExecutor(java.lang.String name, IDynamicGraph<ISuite> graph, IThreadWorkerFactory<ISuite> factory, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.BlockingQueue<java.lang.Runnable> workQueue, java.util.Comparator<ISuite> comparator)
-