1 package test.configuration;
2 
3 import org.testng.Assert;
4 import org.testng.annotations.BeforeGroups;
5 import org.testng.annotations.Test;
6 
7 @Test( groups = "foo" )
8 public class MultipleBeforeGroupTest {
9   private int m_count = 0;
10 
11   @BeforeGroups( "foo" )
beforeGroups()12   public void beforeGroups() {
13     m_count++;
14   }
15 
16   @Test()
test()17   public void test() {
18   }
19 
20   @Test(dependsOnMethods = "test")
verify()21   public void verify() {
22     Assert.assertEquals(1, m_count);
23   }
24 
25 }
26