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 IRetryAnalyzer
ITestNGMethod. getRetryAnalyzer()
Deprecated.- This method stands deprecated as of TestNG 7.0.0.default IRetryAnalyzer
ITestNGMethod. 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 void
ITestNGMethod. 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 void
ITestNGMethod. 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 IRetryAnalyzer
ITestAnnotation. 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 void
ITestAnnotation. 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 IRetryAnalyzer
BaseTestMethod. m_retryAnalyzer
Fields in org.testng.internal with type parameters of type IRetryAnalyzer Modifier and Type Field Description private java.lang.Class<? extends IRetryAnalyzer>
BaseTestMethod. m_retryAnalyzerClass
private java.util.Map<java.lang.String,IRetryAnalyzer>
BaseTestMethod. m_testMethodToRetryAnalyzer
Methods in org.testng.internal that return IRetryAnalyzer Modifier and Type Method Description private static IRetryAnalyzer
TestNGMethod. cloneInstance(IRetryAnalyzer instance)
IRetryAnalyzer
BaseTestMethod. getRetryAnalyzer()
IRetryAnalyzer
BaseTestMethod. getRetryAnalyzer(ITestResult result)
IRetryAnalyzer
ClonedMethod. getRetryAnalyzer()
IRetryAnalyzer
ClonedMethod. getRetryAnalyzer(ITestResult result)
IRetryAnalyzer
WrappedTestNGMethod. getRetryAnalyzer()
IRetryAnalyzer
WrappedTestNGMethod. getRetryAnalyzer(ITestResult result)
private IRetryAnalyzer
BaseTestMethod. 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 IRetryAnalyzer
TestNGMethod. cloneInstance(IRetryAnalyzer instance)
void
BaseTestMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)
void
ClonedMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)
void
WrappedTestNGMethod. setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)
Method parameters in org.testng.internal with type arguments of type IRetryAnalyzer Modifier and Type Method Description void
BaseTestMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)
void
ClonedMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)
void
WrappedTestNGMethod. 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 class
DisabledRetryAnalyzer
A 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 IRetryAnalyzer
TestAnnotation. m_retryAnalyzer
Fields in org.testng.internal.annotations with type parameters of type IRetryAnalyzer Modifier and Type Field Description private java.lang.Class<? extends IRetryAnalyzer>
TestAnnotation. m_retryAnalyzerClass
Methods in org.testng.internal.annotations that return IRetryAnalyzer Modifier and Type Method Description IRetryAnalyzer
TestAnnotation. 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 boolean
TestAnnotation. isRetryAnalyzerNotTestNGInjected(java.lang.Class<? extends IRetryAnalyzer> c)
void
TestAnnotation. 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 class
RetryAnalyzerCount
An implementation of IRetryAnalyzer that allows you to specify the maximum number of times you want your test to be retried.
-