Package test.objectfactory

Source Code of test.objectfactory.ContextAwareFactoryFactory

package test.objectfactory;

import org.testng.IObjectFactory;
import org.testng.ITestContext;
import org.testng.annotations.ObjectFactory;
import org.testng.internal.ObjectFactoryImpl;

/**
* @author Hani Suleiman
*         Date: Mar 8, 2007
*         Time: 10:05:55 PM
*/
public class ContextAwareFactoryFactory
{
  @ObjectFactory
  public IObjectFactory create(ITestContext context) {
    assert context != null;
    return new ObjectFactoryImpl();
  }
}
TOP

Related Classes of test.objectfactory.ContextAwareFactoryFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.