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