All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.junit.IJUnitTestRunner Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.junit;

import java.util.Collection;
import java.util.List;

import org.testng.IInvokedMethodListener;
import org.testng.ITestNGMethod;
import org.testng.internal.ITestResultNotifier;


/**
 * An abstraction interface over JUnit test runners.
 *
 * @author Alexandru Popescu
 */
public interface IJUnitTestRunner {

  void setInvokedMethodListeners(Collection listener);

  void setTestResultNotifier(ITestResultNotifier notifier);

  void run(Class junitTestClass, String... methods);

  List getTestMethods();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy