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