01: package test.thread; 02: 03: import org.testng.annotations.Factory; 04: import org.testng.annotations.Test; 05: 06: @Test 07: public class FactorySampleTest { 08: 09: @Factory 10: public Object[] init() { 11: return new Object[] { new B(), new B(), }; 12: } 13: }