• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.retryAnalyzer;
2 
3 import org.testng.Assert;
4 import org.testng.annotations.Test;
5 
6 public class PersistentFailure {
7   @Test(retryAnalyzer = MyRetry.class)
test()8   public void test() {
9     Assert.fail();
10   }
11 }
12