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