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