Package org.testng.remote.strprotocol
Interface IRemoteSuiteListener
-
public interface IRemoteSuiteListener
Interface replicating theISuiteListener
used for remote listeners.- See Also:
ISuiteListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFinish(SuiteMessage suiteMessage)
void
onInitialization(GenericMessage genericMessage)
General information about the number of suites to be run.void
onStart(SuiteMessage suiteMessage)
-
-
-
Method Detail
-
onInitialization
void onInitialization(GenericMessage genericMessage)
General information about the number of suites to be run. This is called once before all suites.- Parameters:
genericMessage
- a message containing the number of suites that will be run
-
onStart
void onStart(SuiteMessage suiteMessage)
- Parameters:
suiteMessage
- the suite message containing the description of the suite to be run.- See Also:
ISuiteListener.onStart(org.testng.ISuite)
-
onFinish
void onFinish(SuiteMessage suiteMessage)
- Parameters:
suiteMessage
- the suite message containing infos about the finished suite.- See Also:
ISuiteListener.onFinish(org.testng.ISuite)
-
-