01: package test.thread;
02:
03: import org.testng.annotations.Test;
04:
05: public class Test2Test extends BaseSequentialSample {
06:
07: @Test
08: public void f21() {
09: ppp("f21");
10: addId(Thread.currentThread().getId());
11: }
12:
13: @Test
14: public void f22() {
15: ppp("f22");
16: addId(Thread.currentThread().getId());
17: }
18:
19: }
|