1package test.distributed;
2
3import org.testng.annotations.Test;
4
5public class Test1 {
6  @Test
7  public void f1() {
8//    ppp("f1");
9  }
10
11  private void ppp(String s) {
12    System.out.println("[Test1] " + s);
13  }
14}
15
16