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