Home | History | Annotate | Download | only in testng106
      1 package test.testng106;
      2 
      3 import org.testng.annotations.BeforeSuite;
      4 
      5 
      6 /**
      7  * TESTNG-106: failing @BeforeSuite doesn't skip all tests
      8  */
      9 public class FailingSuiteFixture {
     10   static int s_invocations = 0;
     11 
     12   @BeforeSuite
     13   public void failingBeforeSuite() {
     14     throw new RuntimeException();
     15   }
     16 }
     17