Uses of Interface
org.testng.IRetryAnalyzer
-
Packages that use IRetryAnalyzer Package Description org.testng org.testng.annotations org.testng.internal org.testng.internal.annotations org.testng.util -
-
Uses of IRetryAnalyzer in org.testng
Methods in org.testng that return IRetryAnalyzer Modifier and Type Method Description IRetryAnalyzerITestNGMethod. getRetryAnalyzer(ITestResult result)Methods in org.testng that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description java.lang.Class<? extends IRetryAnalyzer>ITestNGMethod. getRetryAnalyzerClass()Method parameters in org.testng with type arguments of type IRetryAnalyzer Modifier and Type Method Description voidITestNGMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) -
Uses of IRetryAnalyzer in org.testng.annotations
Methods in org.testng.annotations that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description java.lang.Class<? extends IRetryAnalyzer>ITestAnnotation. getRetryAnalyzerClass()java.lang.Class<? extends IRetryAnalyzer>retryAnalyzer()The name of the class that should be called to test if the test should be retried.Method parameters in org.testng.annotations with type arguments of type IRetryAnalyzer Modifier and Type Method Description voidITestAnnotation. setRetryAnalyzer(java.lang.Class<? extends IRetryAnalyzer> c) -
Uses of IRetryAnalyzer in org.testng.internal
Methods in org.testng.internal that return IRetryAnalyzer Modifier and Type Method Description IRetryAnalyzerBaseTestMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerClonedMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerLiteWeightTestNGMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerWrappedTestNGMethod. getRetryAnalyzer(ITestResult result)Methods in org.testng.internal that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description java.lang.Class<? extends IRetryAnalyzer>BaseTestMethod. getRetryAnalyzerClass()java.lang.Class<? extends IRetryAnalyzer>ClonedMethod. getRetryAnalyzerClass()java.lang.Class<? extends IRetryAnalyzer>LiteWeightTestNGMethod. getRetryAnalyzerClass()java.lang.Class<? extends IRetryAnalyzer>WrappedTestNGMethod. getRetryAnalyzerClass()Method parameters in org.testng.internal with type arguments of type IRetryAnalyzer Modifier and Type Method Description voidBaseTestMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)voidClonedMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)voidLiteWeightTestNGMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)voidWrappedTestNGMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) -
Uses of IRetryAnalyzer in org.testng.internal.annotations
Classes in org.testng.internal.annotations that implement IRetryAnalyzer Modifier and Type Class Description classDisabledRetryAnalyzerA No operation retry analyzer that exists just to let us use proper types in @Test.retryAnalyzer()Methods in org.testng.internal.annotations that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description java.lang.Class<? extends IRetryAnalyzer>TestAnnotation. getRetryAnalyzerClass()Method parameters in org.testng.internal.annotations with type arguments of type IRetryAnalyzer Modifier and Type Method Description voidTestAnnotation. setRetryAnalyzer(java.lang.Class<? extends IRetryAnalyzer> c) -
Uses of IRetryAnalyzer in org.testng.util
Classes in org.testng.util that implement IRetryAnalyzer Modifier and Type Class Description classRetryAnalyzerCountAn implementation of IRetryAnalyzer that allows you to specify the maximum number of times you want your test to be retried.
-