Home
last modified time | relevance | path

Searched refs:DataProviderThreadPoolSizeSampleTest (Results 1 – 2 of 2) sorted by relevance

/external/testng/src/test/java/test/thread/
DDataProviderThreadPoolSizeTest.java13 TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class); in shouldUseDefaultDataProviderThreadCount()
16 Assert.assertEquals(DataProviderThreadPoolSizeSampleTest.getThreadCount(), 10); in shouldUseDefaultDataProviderThreadCount()
21 TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class); in shouldNotUseThreadsIfNotUsingParallel()
24 Assert.assertEquals(DataProviderThreadPoolSizeSampleTest.getThreadCount(), 1); in shouldNotUseThreadsIfNotUsingParallel()
29 TestNG tng = create(DataProviderThreadPoolSizeSampleTest.class); in shouldUseSpecifiedDataProviderThreadCount()
33 Assert.assertEquals(DataProviderThreadPoolSizeSampleTest.getThreadCount(), 3); in shouldUseSpecifiedDataProviderThreadCount()
DDataProviderThreadPoolSizeSampleTest.java7 public class DataProviderThreadPoolSizeSampleTest extends BaseThreadTest { class