blob: b52a5aaf69ccd2a6f1eef788076ab25187e1d3e1 [file] [log] [blame]
package test.tmp;
import org.testng.annotations.Factory;
public class AFactory {
@Factory
public Object[] create() {
return new Object[] { new A(), new AA() };
}
}