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