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