blob: fd57a2a44ade756694192dadcdfd749ac068706e [file] [log] [blame]
package test.retryAnalyzer;
import org.testng.annotations.Factory;
public class MyFactory {
@Factory
public Object[] createTests(){
int num = 10;
Object[] result = new Object[num];
for(int i=0;i<num;i++){
FactoryTest obj = new FactoryTest("Test" + i);
result[i] = obj;
}
return result;
}
}