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