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