org.testng.remote.strprotocol
Class RemoteMessageSenderTestListener

java.lang.Object
  extended by org.testng.remote.strprotocol.RemoteMessageSenderTestListener
All Implemented Interfaces:
org.testng.internal.IConfigurationListener, org.testng.internal.IResultListener, ITestListener, ITestNGListener

public class RemoteMessageSenderTestListener
extends Object
implements org.testng.internal.IResultListener

A special listener that remote the event with string protocol.

Author:
Alexandru Popescu

Constructor Summary
RemoteMessageSenderTestListener(ISuite suite, XmlTest test, StringMessageSenderHelper msh)
           
 
Method Summary
 void onConfigurationFailure(ITestResult itr)
           
 void onConfigurationSkip(ITestResult itr)
           
 void onConfigurationSuccess(ITestResult itr)
           
 void onFinish(ITestContext testCtx)
          Invoked after all the tests have run and all their Configuration methods have been called.
 void onStart(ITestContext testCtx)
          Invoked after the test class is instantiated and before any configuration method is called.
 void onTestFailedButWithinSuccessPercentage(ITestResult testResult)
          Invoked each time a method fails but has been annotated with successPercentage and this failure still keeps it within the success percentage requested.
 void onTestFailure(ITestResult testResult)
          Invoked each time a test fails.
 void onTestSkipped(ITestResult testResult)
          Invoked each time a test is skipped.
 void onTestStart(ITestResult testResult)
          Invoked each time before a test will be invoked.
 void onTestSuccess(ITestResult testResult)
          Invoked each time a test succeeds.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RemoteMessageSenderTestListener

public RemoteMessageSenderTestListener(ISuite suite,
                                       XmlTest test,
                                       StringMessageSenderHelper msh)
Method Detail

onStart

public void onStart(ITestContext testCtx)
Description copied from interface: ITestListener
Invoked after the test class is instantiated and before any configuration method is called.

Specified by:
onStart in interface ITestListener

onFinish

public void onFinish(ITestContext testCtx)
Description copied from interface: ITestListener
Invoked after all the tests have run and all their Configuration methods have been called.

Specified by:
onFinish in interface ITestListener

onTestStart

public void onTestStart(ITestResult testResult)
Description copied from interface: ITestListener
Invoked each time before a test will be invoked. The ITestResult is only partially filled with the references to class, method, start millis and status.

Specified by:
onTestStart in interface ITestListener
Parameters:
testResult - the partially filled ITestResult
See Also:
ITestResult.STARTED

onTestFailedButWithinSuccessPercentage

public void onTestFailedButWithinSuccessPercentage(ITestResult testResult)
Description copied from interface: ITestListener
Invoked each time a method fails but has been annotated with successPercentage and this failure still keeps it within the success percentage requested.

Specified by:
onTestFailedButWithinSuccessPercentage in interface ITestListener
Parameters:
testResult - ITestResult containing information about the run test
See Also:
ITestResult.SUCCESS_PERCENTAGE_FAILURE

onTestFailure

public void onTestFailure(ITestResult testResult)
Description copied from interface: ITestListener
Invoked each time a test fails.

Specified by:
onTestFailure in interface ITestListener
Parameters:
testResult - ITestResult containing information about the run test
See Also:
ITestResult.FAILURE

onTestSkipped

public void onTestSkipped(ITestResult testResult)
Description copied from interface: ITestListener
Invoked each time a test is skipped.

Specified by:
onTestSkipped in interface ITestListener
Parameters:
testResult - ITestResult containing information about the run test
See Also:
ITestResult.SKIP

onTestSuccess

public void onTestSuccess(ITestResult testResult)
Description copied from interface: ITestListener
Invoked each time a test succeeds.

Specified by:
onTestSuccess in interface ITestListener
Parameters:
testResult - ITestResult containing information about the run test
See Also:
ITestResult.SUCCESS

onConfigurationFailure

public void onConfigurationFailure(ITestResult itr)
Specified by:
onConfigurationFailure in interface org.testng.internal.IConfigurationListener
See Also:
IConfigurationListener.onConfigurationFailure(org.testng.ITestResult)

onConfigurationSkip

public void onConfigurationSkip(ITestResult itr)
Specified by:
onConfigurationSkip in interface org.testng.internal.IConfigurationListener
See Also:
IConfigurationListener.onConfigurationSkip(org.testng.ITestResult)

onConfigurationSuccess

public void onConfigurationSuccess(ITestResult itr)
Specified by:
onConfigurationSuccess in interface org.testng.internal.IConfigurationListener
See Also:
IConfigurationListener.onConfigurationSuccess(org.testng.ITestResult)


Copyright © 2010. All Rights Reserved.