Home | History | Annotate | Download | only in thread
      1 package test.thread;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class Test2Test extends BaseSequentialSample {
      6 
      7   @Test
      8   public void f21() {
      9     ppp("f21");
     10     addId("Test2Test.f21()", Thread.currentThread().getId());
     11   }
     12 
     13   @Test
     14   public void f22() {
     15     ppp("f22");
     16     addId("Test2Test.f22()", Thread.currentThread().getId());
     17   }
     18 
     19 
     20 }
     21