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