1 package test.regression; 2 3 import org.testng.ITestContext; 4 import org.testng.annotations.BeforeSuite; 5 import org.testng.annotations.BeforeTest; 6 7 public class MyTestngTest { 8 9 @BeforeSuite() beforeSuite(ITestContext tc)10 public void beforeSuite(ITestContext tc) throws Exception { 11 } 12 13 @BeforeTest() beforeTest(ITestContext tc)14 public void beforeTest(ITestContext tc) throws Exception { 15 throw new RuntimeException("barfing now"); 16 } 17 } 18