public class TestListenerAdapter extends java.lang.Object implements IResultListener2
If you extend this class in order to override any of these methods, remember to call their super equivalent if you want this list of tests to be maintained.
Modifier and Type | Field and Description |
---|---|
private java.util.Collection<ITestNGMethod> |
m_allTestMethods |
private java.util.Collection<ITestResult> |
m_failedButWSPerTests |
private java.util.Collection<ITestResult> |
m_failedConfs |
private java.util.Collection<ITestResult> |
m_failedTests |
private java.util.Collection<ITestResult> |
m_passedConfs |
private java.util.Collection<ITestResult> |
m_passedTests |
private java.util.Collection<ITestResult> |
m_skippedConfs |
private java.util.Collection<ITestResult> |
m_skippedTests |
private java.util.Collection<ITestContext> |
m_testContexts |
private java.util.Collection<ITestResult> |
m_timedOutTests |
Constructor and Description |
---|
TestListenerAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
beforeConfiguration(ITestResult tr)
Invoked before a configuration method is invoked.
|
protected ITestNGMethod[] |
getAllTestMethods() |
java.util.List<ITestResult> |
getConfigurationFailures() |
java.util.List<ITestResult> |
getConfigurationSkips() |
java.util.List<ITestResult> |
getFailedButWithinSuccessPercentageTests() |
java.util.List<ITestResult> |
getFailedTests() |
java.util.List<ITestResult> |
getPassedTests() |
java.util.List<ITestResult> |
getSkippedTests() |
java.util.List<ITestContext> |
getTestContexts() |
java.util.Collection<ITestResult> |
getTimedoutTests() |
void |
onConfigurationFailure(ITestResult itr)
Invoked whenever a configuration method failed.
|
void |
onConfigurationSkip(ITestResult itr)
Invoked whenever a configuration method was skipped.
|
void |
onConfigurationSuccess(ITestResult itr)
Invoked whenever a configuration method succeeded.
|
void |
onFinish(ITestContext testContext)
Invoked after all the test methods belonging to the classes inside the <test> tag have run
and all their Configuration methods have been called.
|
void |
onStart(ITestContext testContext)
Invoked before running all the test methods belonging to the classes inside the <test> tag
and calling all their Configuration methods.
|
void |
onTestFailedButWithinSuccessPercentage(ITestResult tr)
Invoked each time a method fails but has been annotated with successPercentage and this failure
still keeps it within the success percentage requested.
|
void |
onTestFailedWithTimeout(ITestResult tr)
Invoked each time a test fails due to a timeout.
|
void |
onTestFailure(ITestResult tr)
Invoked each time a test fails.
|
void |
onTestSkipped(ITestResult tr)
Invoked each time a test is skipped.
|
void |
onTestStart(ITestResult result)
Invoked each time before a test will be invoked.
|
void |
onTestSuccess(ITestResult tr)
Invoked each time a test succeeds.
|
void |
setAllTestMethods(java.util.List<ITestNGMethod> allTestMethods) |
void |
setFailedButWithinSuccessPercentageTests(java.util.List<ITestResult> failedButWithinSuccessPercentageTests) |
void |
setFailedTests(java.util.List<ITestResult> failedTests) |
void |
setPassedTests(java.util.List<ITestResult> passedTests) |
void |
setSkippedTests(java.util.List<ITestResult> skippedTests) |
java.lang.String |
toString() |
private java.util.Collection<ITestNGMethod> m_allTestMethods
private java.util.Collection<ITestResult> m_passedTests
private java.util.Collection<ITestResult> m_failedTests
private java.util.Collection<ITestResult> m_skippedTests
private java.util.Collection<ITestResult> m_failedButWSPerTests
private java.util.Collection<ITestContext> m_testContexts
private java.util.Collection<ITestResult> m_failedConfs
private java.util.Collection<ITestResult> m_skippedConfs
private java.util.Collection<ITestResult> m_passedConfs
private java.util.Collection<ITestResult> m_timedOutTests
public void onTestSuccess(ITestResult tr)
ITestListener
onTestSuccess
in interface ITestListener
tr
- ITestResult
containing information about the run testITestResult.SUCCESS
public void onTestFailure(ITestResult tr)
ITestListener
onTestFailure
in interface ITestListener
tr
- ITestResult
containing information about the run testITestResult.FAILURE
public void onTestSkipped(ITestResult tr)
ITestListener
onTestSkipped
in interface ITestListener
tr
- ITestResult
containing information about the run testITestResult.SKIP
public void onTestFailedWithTimeout(ITestResult tr)
ITestListener
onTestFailedWithTimeout
in interface ITestListener
tr
- ITestResult
containing information about the run testpublic void onTestFailedButWithinSuccessPercentage(ITestResult tr)
ITestListener
onTestFailedButWithinSuccessPercentage
in interface ITestListener
tr
- ITestResult
containing information about the run testITestResult.SUCCESS_PERCENTAGE_FAILURE
protected ITestNGMethod[] getAllTestMethods()
public void onStart(ITestContext testContext)
ITestListener
onStart
in interface ITestListener
public void onFinish(ITestContext testContext)
ITestListener
onFinish
in interface ITestListener
public java.util.List<ITestResult> getFailedButWithinSuccessPercentageTests()
public java.util.List<ITestResult> getFailedTests()
public java.util.List<ITestResult> getPassedTests()
public java.util.List<ITestResult> getSkippedTests()
public java.util.Collection<ITestResult> getTimedoutTests()
public void setAllTestMethods(java.util.List<ITestNGMethod> allTestMethods)
allTestMethods
- The allTestMethods to set.public void setFailedButWithinSuccessPercentageTests(java.util.List<ITestResult> failedButWithinSuccessPercentageTests)
failedButWithinSuccessPercentageTests
- The failedButWithinSuccessPercentageTests to set.public void setFailedTests(java.util.List<ITestResult> failedTests)
failedTests
- The failedTests to set.public void setPassedTests(java.util.List<ITestResult> passedTests)
passedTests
- The passedTests to set.public void setSkippedTests(java.util.List<ITestResult> skippedTests)
skippedTests
- The skippedTests to set.public void onTestStart(ITestResult result)
ITestListener
ITestResult
is only partially
filled with the references to class, method, start millis and status.onTestStart
in interface ITestListener
result
- the partially filled ITestResult
ITestResult.STARTED
public java.util.List<ITestContext> getTestContexts()
public java.util.List<ITestResult> getConfigurationFailures()
public void onConfigurationFailure(ITestResult itr)
IConfigurationListener
onConfigurationFailure
in interface IConfigurationListener
IConfigurationListener.onConfigurationFailure(org.testng.ITestResult)
public java.util.List<ITestResult> getConfigurationSkips()
public void beforeConfiguration(ITestResult tr)
IConfigurationListener
beforeConfiguration
in interface IConfigurationListener
public void onConfigurationSkip(ITestResult itr)
IConfigurationListener
onConfigurationSkip
in interface IConfigurationListener
IConfigurationListener.onConfigurationSkip(org.testng.ITestResult)
public void onConfigurationSuccess(ITestResult itr)
IConfigurationListener
onConfigurationSuccess
in interface IConfigurationListener
IConfigurationListener.onConfigurationSuccess(org.testng.ITestResult)
public java.lang.String toString()
toString
in class java.lang.Object