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