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