blob: ae9e36b2e5a1d1f96c60b4f9912fa4cc724ae256 [file] [log] [blame]
package test.groupinvocation;
import org.testng.annotations.BeforeGroups;
/**
* This class/interface
*/
public class FailingBeforeGroupMethod {
@BeforeGroups(groups={"A"})
public void beforeGroupA() {
throw new RuntimeException("Failing @BeforeGroups beforeGroupA method");
}
}