Home | History | Annotate | Download | only in methodinterceptors
      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
      9   public void beforeClass() {}
     10 
     11   @Test
     12   public void test1() {}
     13 
     14   @Test
     15   public void test2() {}
     16 
     17 }
     18