01: package test.objectfactory;
02:
03: import org.testng.annotations.ObjectFactory;
04: import org.testng.IObjectFactory;
05:
06: /**
07: * @author Hani Suleiman
08: * Date: Mar 6, 2007
09: * Time: 5:03:19 PM
10: */
11: public class BadMethodFactoryFactory {
12: @ObjectFactory
13: public Object create() {
14: return new LoggingObjectFactory();
15: }
16: }
|