• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.configurationfailurepolicy;
2 
3 import org.testng.annotations.Factory;
4 
5 public class FactoryClassWithFailedBeforeClassMethod extends ClassWithFailedBeforeClassMethod {
6   @Factory
createTests()7   public Object[] createTests() {
8     Object[] instances = new Object[2];
9     instances[0] = new FactoryClassWithFailedBeforeClassMethod();
10     instances[1] = new FactoryClassWithFailedBeforeClassMethod();
11     return instances;
12   }
13 }
14