1 package test.methodinterceptors; 2 3 import org.testng.annotations.BeforeClass; 4 import org.testng.annotations.Test; 5 6 public class Issue521 { 7 8 @BeforeClass beforeClass()9 public void beforeClass() {} 10 11 @Test test1()12 public void test1() {} 13 14 @Test test2()15 public void test2() {} 16 17 } 18