01: package test.annotationtransformer; 02: 03: import org.testng.annotations.Test; 04: 05: @Test(invocationCount=3) 06: public class AnnotationTransformerClassInvocationSampleTest { 07: 08: public void f1() { 09: } 10: 11: public void f2() { 12: } 13: }