blob: 8868ffc47ee3356c9ad32324b91cf3932cd6ba37 [file] [log] [blame]
package test.distributed;
import org.testng.annotations.Test;
public class Test1 {
@Test
public void f1() {
// ppp("f1");
}
private void ppp(String s) {
System.out.println("[Test1] " + s);
}
}