blob: 98cda2e19ae8d1654b2c2c0bc040ee8eece9f689 [file] [log] [blame]
package org.testng.internal;
import org.testng.IClass;
import org.testng.ITestContext;
import org.testng.ITestNGMethod;
import org.testng.ITestResult;
import org.testng.xml.XmlSuite;
import java.util.List;
import java.util.Map;
/**
* This class defines an invoker.
*
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public interface IInvoker {
/**
* Invoke configuration methods if they belong to the same TestClass
* passed in parameter..
*
* TODO: Calculate ahead of time which methods should be
* invoked for each class. Might speed things up for users who invoke the same
* test class with different parameters in the same suite run.
*
* @param testClass the class whose configuration methods must be run
*/
public void invokeConfigurations(IClass testClass,
ITestNGMethod[] allMethods,
XmlSuite suite,
Map<String, String> parameters,
Object[] parameterValues,
Object instance);
/**
* Invoke the given method
*
* @param testMethod
* @param suite
* @param parameters
* @param groupMethods
*
* @return a list containing the results of the test methods invocations
*/
public List<ITestResult> invokeTestMethods(ITestNGMethod testMethod,
XmlSuite suite,
Map<String, String> parameters,
ConfigurationGroupMethods groupMethods,
Object instance,
ITestContext testContext);
}