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