blob: d6f8bdd26baa515477f00a2379a80c8dcfd166a1 [file] [log] [blame]
package test.configuration;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
public class BeforeTestOrdering1Test extends BaseBeforeTestOrdering {
@BeforeTest
public void bt1() {
log("bt1");
}
@AfterTest
public void at1() {
log("at1");
}
@Test
public void f1() {
log("f1");
}
private static void ppp(String s) {
System.out.println("[BeforeTestOrdering1Test] " + s);
}
}