• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.thread;
2 
3 import org.testng.annotations.Factory;
4 import org.testng.annotations.Test;
5 
6 
7 @Test
8 public class FactorySampleTest {
9 
10   @Factory
init()11   public Object[] init() {
12     return new Object[] {
13         new B(),
14         new B(),
15     };
16   }
17 }
18 
19