Home | History | Annotate | Download | only in invocationcount
      1 package test.invocationcount;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class InvocationBase {
      6   @Test(invocationCount = 3)
      7   public void f() {
      8   }
      9 }
     10