Home | History | Annotate | Download | only in testng471
      1 package test.inheritance.testng471;
      2 
      3 import org.testng.annotations.BeforeClass;
      4 
      5 public class SuperClass2 {
      6 
      7   @BeforeClass
      8   public void beforeSuperClass2() {
      9   }
     10 }
     11