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