org.testng.remote.strprotocol.IStringMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.remote.strprotocol;
/**
* String based protocol main interface to be used with remote listeners.
*
* @author Alexandru Popescu
*/
public interface IStringMessage extends IMessage {
String getMessageAsString();
}