blob: f31cddd7d242b2e9c94dd74b9a192fca7e1b7a3c [file] [log] [blame]
package test.tmp;
import org.testng.annotations.BeforeMethod;
public class Base {
@BeforeMethod
public void bm() {
System.out.println("Thread" + Thread.currentThread().getId());
}
}