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

15 lines
374 B
Java

package org.testng.remote.adapter;
import java.io.IOException;
import java.util.Properties;
import org.testng.ISuite;
import org.testng.xml.XmlSuite;
public interface IWorkerAdapter {
XmlSuite getSuite(long j) throws InterruptedException, IOException;
void init(Properties properties) throws Exception;
void returnResult(ISuite iSuite) throws IOException;
}