blob: fd641dfe9b0a75eecf0980a088958d350b4aecd8 [file] [log] [blame]
package test.configuration;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class BeforeClassThreadB {
public static long WHEN;
@BeforeClass(alwaysRun = true)
public void setup() throws InterruptedException {
WHEN = System.currentTimeMillis();
Thread.sleep(2000);
}
@Test
public void execute() {
}
}