blob: e4b3182a97e85d6e3d6aa4bd460d921af1cccada [file] [log] [blame]
package test.configuration;
import org.testng.Assert;
import org.testng.annotations.BeforeGroups;
import org.testng.annotations.Test;
@Test( groups = "foo" )
public class MultipleBeforeGroupTest {
private int m_count = 0;
@BeforeGroups( "foo" )
public void beforeGroups() {
m_count++;
}
@Test()
public void test() {
}
@Test(dependsOnMethods = "test")
public void verify() {
Assert.assertEquals(1, m_count);
}
}