14 lines
391 B
Java
14 lines
391 B
Java
package org.testng.remote.adapter;
|
|
|
|
import java.io.IOException;
|
|
import java.util.Properties;
|
|
import org.testng.xml.XmlSuite;
|
|
|
|
public interface IMasterAdapter {
|
|
void awaitTermination(long j) throws InterruptedException;
|
|
|
|
void init(Properties properties) throws Exception;
|
|
|
|
void runSuitesRemotely(XmlSuite xmlSuite, RemoteResultListener remoteResultListener) throws IOException;
|
|
}
|