blob: 87b42be75ef7651600b9b6bc2be7e4cce0cbc208 [file] [log] [blame]
package test.configuration;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeGroups;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
@Test(groups = {"base"})
public class Base {
static int m_count;
@BeforeTest
public void init() {
m_count = 0;
}
@BeforeGroups(groups = "foo")
public void beforeGroups() {
m_count++;
}
private static void ppp(String s) {
System.out.println("[Base] " + s);
}
}