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