1 package test.groupinvocation; 2 3 import org.testng.annotations.BeforeGroups; 4 5 6 /** 7 * This class/interface 8 */ 9 public class FailingBeforeGroupMethod { 10 @BeforeGroups(groups={"A"}) beforeGroupA()11 public void beforeGroupA() { 12 throw new RuntimeException("Failing @BeforeGroups beforeGroupA method"); 13 } 14 } 15