1package test.thread; 2 3import org.testng.annotations.Test; 4 5public class ThreadPoolSizeSampleTest { 6 @Test(threadPoolSize=2, timeOut=100) 7 public void willPassBug() throws InterruptedException{ 8 Thread.sleep(500); 9 } 10 11} 12