• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.configuration;
2 
3 import org.testng.annotations.Factory;
4 
5 public class SuiteFactoryOnceSample2Test {
6 
7   @Factory
factory()8   public Object[] factory() {
9     return new Object[] { new SuiteFactoryOnceSample1Test(), new SuiteFactoryOnceSample1Test() };
10   }
11 }
12