Home | History | Annotate | Download | only in thread

Lines Matching refs:tng

13     TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class);
14 tng.setGroups("parallel");
15 tng.run();
21 TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class);
22 tng.setGroups("sequential");
23 tng.run();
29 TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class);
30 tng.setGroups("parallel");
31 tng.setDataProviderThreadCount(3);
32 tng.run();