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