2026-03-17 13:31:18 -07:00

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;
}