org.testng.ITestRunnerFactory 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;
import org.testng.xml.XmlTest;
import java.util.Collection;
import java.util.List;
/**
* A factory for TestRunners to be used by SuiteRunners.
*/
public interface ITestRunnerFactory {
TestRunner newTestRunner(final ISuite suite, final XmlTest test,
Collection listeners, List classListeners);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy