blob: 1202a54d62ab3de9e486167e29b7a01277d1de35 [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;
}
}