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