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