• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.factory;
2 
3 import org.testng.annotations.Factory;
4 
5 public class NonPublicFactoryMethodSample {
6 
7     @Factory
createInstances()8     private Object[] createInstances() {
9         return new Object[] {
10                 new BaseFactory(42),
11                 new BaseFactory(43)
12         };
13     }
14 }
15