blob: eb37fb7c86e4e53a5c2e5680955c1e539e68b4b8 [file] [log] [blame]
package org.testng.internal;
import java.util.Map;
import org.testng.IClass;
import org.testng.internal.annotations.IAnnotationFinder;
import org.testng.xml.XmlTest;
/**
* This class/interface
*/
public interface IInstanceFactory {
Object createInstance(
Class declaringClass,
Map<Class, IClass> classes,
XmlTest xmlTest,
IAnnotationFinder finder);
}