|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.testng.TestRunner
public class TestRunner
This class takes care of running one Test.
| Constructor Summary | |
|---|---|
|
TestRunner(org.testng.internal.IConfiguration configuration,
ISuite suite,
XmlTest test,
boolean skipFailedInvocationCounts,
java.util.List<IInvokedMethodListener> listeners)
|
protected |
TestRunner(org.testng.internal.IConfiguration configuration,
ISuite suite,
XmlTest test,
java.lang.String outputDirectory,
org.testng.internal.annotations.IAnnotationFinder finder,
boolean skipFailedInvocationCounts,
java.util.List<IInvokedMethodListener> invokedMethodListeners)
|
| Method Summary | |
|---|---|
void |
addFailedButWithinSuccessPercentageTest(ITestNGMethod testMethod,
ITestResult result)
|
void |
addFailedTest(ITestNGMethod testMethod,
ITestResult result)
|
void |
addGuiceModule(java.lang.Class<? extends com.google.inject.Module> cls,
com.google.inject.Module module)
|
void |
addInjector(java.util.List<com.google.inject.Module> moduleInstances,
com.google.inject.Injector injector)
|
void |
addInvokedMethod(org.testng.internal.InvokedMethod im)
|
void |
addListener(java.lang.Object listener)
|
void |
addPassedTest(ITestNGMethod tm,
ITestResult tr)
|
void |
addSkippedTest(ITestNGMethod tm,
ITestResult tr)
|
void |
addTestListener(ITestListener il)
|
java.util.List<org.testng.internal.thread.graph.IWorker<ITestNGMethod>> |
createWorkers(java.util.List<ITestNGMethod> methods)
Create a list of workers to run the methods passed in parameter. |
ITestNGMethod[] |
getAfterSuiteMethods()
|
ITestNGMethod[] |
getAfterTestConfigurationMethods()
|
ITestNGMethod[] |
getAllTestMethods()
|
java.lang.Object |
getAttribute(java.lang.String name)
|
java.util.Set<java.lang.String> |
getAttributeNames()
|
ITestNGMethod[] |
getBeforeSuiteMethods()
|
ITestNGMethod[] |
getBeforeTestConfigurationMethods()
|
java.util.List<IConfigurationListener> |
getConfigurationListeners()
|
XmlTest |
getCurrentXmlTest()
|
java.util.Date |
getEndDate()
When this test stopped running. |
java.lang.String[] |
getExcludedGroups()
|
java.util.Collection<ITestNGMethod> |
getExcludedMethods()
|
IResultMap |
getFailedButWithinSuccessPercentageTests()
|
IResultMap |
getFailedConfigurations()
Retrieves information about the failed configuration method invocations. |
IResultMap |
getFailedTests()
|
java.util.Set<ITestResult> |
getFailedTests(ITestNGMethod tm)
|
java.util.List<com.google.inject.Module> |
getGuiceModules(java.lang.Class<? extends com.google.inject.Module> cls)
|
java.lang.String |
getHost()
|
java.lang.String[] |
getIncludedGroups()
|
com.google.inject.Injector |
getInjector(java.util.List<com.google.inject.Module> moduleInstances)
|
java.util.List<ITestNGMethod> |
getInvokedMethods()
|
org.testng.internal.IInvoker |
getInvoker()
|
java.lang.String |
getName()
The name of this test. |
java.lang.String |
getOutputDirectory()
|
IResultMap |
getPassedConfigurations()
Retrieves information about the successful configuration method invocations. |
IResultMap |
getPassedTests()
|
java.util.Set<ITestResult> |
getPassedTests(ITestNGMethod tm)
|
IResultMap |
getSkippedConfigurations()
Retrieves information about the skipped configuration method invocations. |
IResultMap |
getSkippedTests()
|
java.util.Set<ITestResult> |
getSkippedTests(ITestNGMethod tm)
|
java.util.Date |
getStartDate()
When this test started running. |
ISuite |
getSuite()
|
XmlTest |
getTest()
|
java.util.Collection<ITestClass> |
getTestClasses()
|
java.util.List<ITestListener> |
getTestListeners()
|
static int |
getVerbose()
|
java.lang.Object |
removeAttribute(java.lang.String name)
Remove the attribute |
void |
run()
The main entry method for TestRunner. |
void |
setAttribute(java.lang.String name,
java.lang.Object value)
Set a custom attribute. |
void |
setMethodInterceptor(IMethodInterceptor methodInterceptor)
|
void |
setOutputDirectory(java.lang.String od)
|
void |
setTestName(java.lang.String name)
|
void |
setVerbose(int n)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected TestRunner(org.testng.internal.IConfiguration configuration,
ISuite suite,
XmlTest test,
java.lang.String outputDirectory,
org.testng.internal.annotations.IAnnotationFinder finder,
boolean skipFailedInvocationCounts,
java.util.List<IInvokedMethodListener> invokedMethodListeners)
public TestRunner(org.testng.internal.IConfiguration configuration,
ISuite suite,
XmlTest test,
boolean skipFailedInvocationCounts,
java.util.List<IInvokedMethodListener> listeners)
| Method Detail |
|---|
public org.testng.internal.IInvoker getInvoker()
public ITestNGMethod[] getBeforeSuiteMethods()
public ITestNGMethod[] getAfterSuiteMethods()
public ITestNGMethod[] getBeforeTestConfigurationMethods()
public ITestNGMethod[] getAfterTestConfigurationMethods()
public java.util.Collection<ITestClass> getTestClasses()
public void setTestName(java.lang.String name)
public void setOutputDirectory(java.lang.String od)
public void run()
public java.util.List<org.testng.internal.thread.graph.IWorker<ITestNGMethod>> createWorkers(java.util.List<ITestNGMethod> methods)
createWorkers in interface org.testng.internal.thread.graph.IThreadWorkerFactory<ITestNGMethod>public java.lang.String getName()
ITestContext
getName in interface ITestContextpublic java.util.Date getStartDate()
ITestContext
getStartDate in interface ITestContextpublic java.util.Date getEndDate()
ITestContext
getEndDate in interface ITestContextpublic IResultMap getPassedTests()
getPassedTests in interface ITestContextpublic IResultMap getSkippedTests()
getSkippedTests in interface ITestContextpublic IResultMap getFailedTests()
getFailedTests in interface ITestContextITestNGMethodpublic IResultMap getFailedButWithinSuccessPercentageTests()
getFailedButWithinSuccessPercentageTests in interface ITestContextpublic java.lang.String[] getIncludedGroups()
getIncludedGroups in interface ITestContextpublic java.lang.String[] getExcludedGroups()
getExcludedGroups in interface ITestContextpublic java.lang.String getOutputDirectory()
getOutputDirectory in interface ITestContextpublic ISuite getSuite()
getSuite in interface ITestContextpublic ITestNGMethod[] getAllTestMethods()
getAllTestMethods in interface ITestContextpublic java.lang.String getHost()
getHost in interface ITestContextpublic java.util.Collection<ITestNGMethod> getExcludedMethods()
getExcludedMethods in interface ITestContextpublic IResultMap getFailedConfigurations()
ITestContext
getFailedConfigurations in interface ITestContextITestContext.getFailedConfigurations()public IResultMap getPassedConfigurations()
ITestContext
getPassedConfigurations in interface ITestContextITestContext.getPassedConfigurations()public IResultMap getSkippedConfigurations()
ITestContext
getSkippedConfigurations in interface ITestContextITestContext.getSkippedConfigurations()
public void addPassedTest(ITestNGMethod tm,
ITestResult tr)
addPassedTest in interface org.testng.internal.ITestResultNotifierpublic java.util.Set<ITestResult> getPassedTests(ITestNGMethod tm)
getPassedTests in interface org.testng.internal.ITestResultNotifierpublic java.util.Set<ITestResult> getFailedTests(ITestNGMethod tm)
getFailedTests in interface org.testng.internal.ITestResultNotifierpublic java.util.Set<ITestResult> getSkippedTests(ITestNGMethod tm)
getSkippedTests in interface org.testng.internal.ITestResultNotifier
public void addSkippedTest(ITestNGMethod tm,
ITestResult tr)
addSkippedTest in interface org.testng.internal.ITestResultNotifierpublic void addInvokedMethod(org.testng.internal.InvokedMethod im)
addInvokedMethod in interface org.testng.internal.ITestResultNotifier
public void addFailedTest(ITestNGMethod testMethod,
ITestResult result)
addFailedTest in interface org.testng.internal.ITestResultNotifier
public void addFailedButWithinSuccessPercentageTest(ITestNGMethod testMethod,
ITestResult result)
addFailedButWithinSuccessPercentageTest in interface org.testng.internal.ITestResultNotifierpublic XmlTest getTest()
getTest in interface org.testng.internal.ITestResultNotifierpublic java.util.List<ITestListener> getTestListeners()
getTestListeners in interface org.testng.internal.ITestResultNotifierpublic java.util.List<IConfigurationListener> getConfigurationListeners()
getConfigurationListeners in interface org.testng.internal.ITestResultNotifierpublic static int getVerbose()
public void setVerbose(int n)
public void addListener(java.lang.Object listener)
public void addTestListener(ITestListener il)
public java.util.List<ITestNGMethod> getInvokedMethods()
public void setMethodInterceptor(IMethodInterceptor methodInterceptor)
public XmlTest getCurrentXmlTest()
getCurrentXmlTest in interface ITestContextpublic java.lang.Object getAttribute(java.lang.String name)
getAttribute in interface IAttributesname - The name of the attribute to return
public void setAttribute(java.lang.String name,
java.lang.Object value)
IAttributes
setAttribute in interface IAttributespublic java.util.Set<java.lang.String> getAttributeNames()
getAttributeNames in interface IAttributespublic java.lang.Object removeAttribute(java.lang.String name)
IAttributes
removeAttribute in interface IAttributespublic java.util.List<com.google.inject.Module> getGuiceModules(java.lang.Class<? extends com.google.inject.Module> cls)
getGuiceModules in interface ITestContext
public void addGuiceModule(java.lang.Class<? extends com.google.inject.Module> cls,
com.google.inject.Module module)
addGuiceModule in interface ITestContextpublic com.google.inject.Injector getInjector(java.util.List<com.google.inject.Module> moduleInstances)
getInjector in interface ITestContext
public void addInjector(java.util.List<com.google.inject.Module> moduleInstances,
com.google.inject.Injector injector)
addInjector in interface ITestContext
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||