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