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()Deprecated.- This method stands deprecated as of TestNG 7.0.0.default IRetryAnalyzerITestNGMethod. getRetryAnalyzer(ITestResult result)Methods in org.testng that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description default java.lang.Class<? extends IRetryAnalyzer>ITestNGMethod. getRetryAnalyzerClass()Methods in org.testng with parameters of type IRetryAnalyzer Modifier and Type Method Description voidITestNGMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)Deprecated.- This method stands deprecated as of TestNG 7.0.0.Method parameters in org.testng with type arguments of type IRetryAnalyzer Modifier and Type Method Description default voidITestNGMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) -
Uses of IRetryAnalyzer in org.testng.annotations
Methods in org.testng.annotations that return IRetryAnalyzer Modifier and Type Method Description IRetryAnalyzerITestAnnotation. getRetryAnalyzer()Deprecated.- This method stands deprecated as of TestNG 7.0.0.Methods in org.testng.annotations that return types with arguments of type IRetryAnalyzer Modifier and Type Method Description default 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
Fields in org.testng.internal declared as IRetryAnalyzer Modifier and Type Field Description private IRetryAnalyzerBaseTestMethod. m_retryAnalyzerFields in org.testng.internal with type parameters of type IRetryAnalyzer Modifier and Type Field Description private java.lang.Class<? extends IRetryAnalyzer>BaseTestMethod. m_retryAnalyzerClassprivate java.util.Map<java.lang.String,IRetryAnalyzer>BaseTestMethod. m_testMethodToRetryAnalyzerMethods in org.testng.internal that return IRetryAnalyzer Modifier and Type Method Description private static IRetryAnalyzerTestNGMethod. cloneInstance(IRetryAnalyzer instance)IRetryAnalyzerBaseTestMethod. getRetryAnalyzer()IRetryAnalyzerBaseTestMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerClonedMethod. getRetryAnalyzer()IRetryAnalyzerClonedMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerWrappedTestNGMethod. getRetryAnalyzer()IRetryAnalyzerWrappedTestNGMethod. getRetryAnalyzer(ITestResult result)private IRetryAnalyzerBaseTestMethod. getRetryAnalyzerConsideringMethodParameters(ITestResult tr)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>WrappedTestNGMethod. getRetryAnalyzerClass()Methods in org.testng.internal with parameters of type IRetryAnalyzer Modifier and Type Method Description private static IRetryAnalyzerTestNGMethod. cloneInstance(IRetryAnalyzer instance)voidBaseTestMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)voidClonedMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)voidWrappedTestNGMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)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)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()Fields in org.testng.internal.annotations declared as IRetryAnalyzer Modifier and Type Field Description private IRetryAnalyzerTestAnnotation. m_retryAnalyzerFields in org.testng.internal.annotations with type parameters of type IRetryAnalyzer Modifier and Type Field Description private java.lang.Class<? extends IRetryAnalyzer>TestAnnotation. m_retryAnalyzerClassMethods in org.testng.internal.annotations that return IRetryAnalyzer Modifier and Type Method Description IRetryAnalyzerTestAnnotation. getRetryAnalyzer()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 private static booleanTestAnnotation. isRetryAnalyzerNotTestNGInjected(java.lang.Class<? extends IRetryAnalyzer> c)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.
-