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