Home | History | Annotate | Download | only in verify
      1 package test.verify;
      2 
      3 import org.testng.annotations.BeforeClass;
      4 
      5 /**
      6  * Make sure that @Listeners annotations can come from superclasses
      7  */
      8 public class Verify3SampleTest extends Verify3Base {
      9   @BeforeClass
     10   public void bc() {
     11     VerifyTestListener.m_count = 0;
     12   }
     13 }
     14