blob: 4f8bd5183132eb081e1167d6fe5f64d55e53a133 [file] [log] [blame]
package test.invocationcount;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
public class DataProviderFalseTrueTest extends DataProviderBase {
@BeforeMethod(firstTimeOnly = false)
public void beforeMethod() {
incrementBefore();
}
@AfterMethod(lastTimeOnly = true)
public void afterMethod() {
incrementAfter();
}
}