Searched refs:DataProviderThreadPoolSizeSampleTest (Results 1 – 2 of 2) sorted by relevance
13 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()
7 public class DataProviderThreadPoolSizeSampleTest extends BaseThreadTest { class