org.testng.internal.FactoryMethod 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.internal;
import org.testng.ITestContext;
import org.testng.ITestNGMethod;
import org.testng.TestNGException;
import org.testng.collections.Lists;
import org.testng.collections.Maps;
import org.testng.internal.annotations.IAnnotationFinder;
import org.testng.xml.XmlTest;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* This class represents a method annotated with @Factory
*
* @author Cedric Beust
*/
public class FactoryMethod extends BaseTestMethod {
/**
*
*/
private static final long serialVersionUID = -7329918821346197099L;
private Object m_instance = null;
private XmlTest m_xmlTest = null;
private ITestContext m_testContext = null;
/**
* @param testClass
* @param method
*/
public FactoryMethod(ConstructorOrMethod com,
Object instance,
XmlTest xmlTest,
IAnnotationFinder annotationFinder,
ITestContext testContext)
{
super(com, annotationFinder, instance);
// Utils.checkInstanceOrStatic(instance, method);
Class> declaringClass = com.getDeclaringClass();
if (instance != null && ! declaringClass.isAssignableFrom(instance.getClass())) {
throw new TestNGException("Mismatch between instance/method classes:"
+ instance.getClass() + " " + declaringClass);
}
m_instance = instance;
m_xmlTest = xmlTest;
m_testContext = testContext;
NoOpTestClass tc = new NoOpTestClass();
tc.setTestClass(declaringClass);
m_testClass = tc;
}
private static void ppp(String s) {
System.out.println("[FactoryMethod] " + s);
}
public Object[] invoke() {
List