package org.testng.internal; import java.util.List; import java.util.Map; import org.testng.IClass; import org.testng.ITestContext; import org.testng.ITestNGMethod; import org.testng.ITestResult; import org.testng.xml.XmlSuite; public interface IInvoker { void invokeConfigurations(IClass iClass, ITestNGMethod[] iTestNGMethodArr, XmlSuite xmlSuite, Map map, Object[] objArr, Object obj); List invokeTestMethods(ITestNGMethod iTestNGMethod, ITestNGMethod[] iTestNGMethodArr, int i, XmlSuite xmlSuite, Map map, ConfigurationGroupMethods configurationGroupMethods, Object[] objArr, ITestContext iTestContext); }