15 lines
374 B
Java
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;
|
|
}
|