Home | History | Annotate | Download | only in thread
      1 package test.thread;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class Sample1 extends BaseThreadTest {
      6 
      7   @Test
      8   public void s1() {
      9     logThread(Thread.currentThread().getId());
     10   }
     11 }
     12