Home | History | Annotate | Download | only in configurationfailurepolicy
      1 package test.configurationfailurepolicy;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class ExtendsClassWithFailedBeforeClassMethod extends ClassWithFailedBeforeClassMethod {
      6 
      7   @Test
      8   public void test2() {
      9         // should be skipped, but BeforeClass method attempted again
     10   }
     11 }
     12