1 package test.objectfactory; 2 3 import org.testng.annotations.ObjectFactory; 4 5 /** 6 * @author Hani Suleiman 7 * Date: Mar 6, 2007 8 * Time: 5:03:19 PM 9 */ 10 public class BadMethodFactoryFactory 11 { 12 @ObjectFactory 13 public Object create() { 14 return new LoggingObjectFactory(); 15 } 16 } 17