• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1  package test.invocationcount;
2  
3  import org.testng.annotations.AfterMethod;
4  import org.testng.annotations.BeforeMethod;
5  
6  public class DataProviderTrueFalseTest extends DataProviderBase {
7    @BeforeMethod(firstTimeOnly = true)
beforeMethod()8    public void beforeMethod() {}
9  
10    @AfterMethod(lastTimeOnly = false)
afterMethod()11    public void afterMethod() {}
12  }
13