01: package test.distributed; 02: 03: import org.testng.annotations.Test; 04: 05: public class Test2 { 06: @Test 07: public void f2() { 08: // ppp("f2"); 09: } 10: 11: private void ppp(String s) { 12: System.out.println("[Test2] " + s); 13: } 14: }