1package test.configuration;
2
3import org.testng.annotations.BeforeClass;
4import org.testng.annotations.Test;
5
6public class BeforeClassThreadA {
7    public static long WHEN;
8
9    @BeforeClass(alwaysRun = true)
10    public void setup() throws InterruptedException {
11        WHEN = System.currentTimeMillis();
12        Thread.sleep(2000);
13    }
14
15    @Test
16    public void execute() {
17    }
18}
19