Home | History | Annotate | Download | only in invocationcount
      1 package test.invocationcount;
      2 
      3 import org.testng.annotations.AfterMethod;
      4 import org.testng.annotations.BeforeMethod;
      5 
      6 public class InvocationCountFalseFalseTest extends InvocationBase {
      7   @BeforeMethod(firstTimeOnly = false)
      8   public void beforeMethod() {}
      9 
     10   @AfterMethod(lastTimeOnly = false)
     11   public void afterMethod() {}
     12 }
     13