Home | History | Annotate | Download | only in testng739
      1 package test.inheritance.testng739;
      2 
      3 import org.testng.Assert;
      4 import org.testng.annotations.BeforeClass;
      5 import org.testng.annotations.Test;
      6 
      7 public class A extends BaseClass {
      8 
      9   @BeforeClass
     10   public void beforeClassA() {
     11     Assert.fail();
     12   }
     13 
     14   @Test
     15   public void testA() {
     16   }
     17 }
     18