Package org.testng.remote.strprotocol
Interface IRemoteSuiteListener
-
public interface IRemoteSuiteListenerInterface replicating theISuiteListenerused for remote listeners.- See Also:
ISuiteListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFinish(SuiteMessage suiteMessage)voidonInitialization(GenericMessage genericMessage)General information about the number of suites to be run.voidonStart(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)
-
-