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(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 void
ITestNGMethod. 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 void
ITestAnnotation. 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 IRetryAnalyzer
BaseTestMethod. getRetryAnalyzer(ITestResult result)
IRetryAnalyzer
ClonedMethod. getRetryAnalyzer(ITestResult result)
IRetryAnalyzer
LiteWeightTestNGMethod. getRetryAnalyzer(ITestResult result)
IRetryAnalyzer
WrappedTestNGMethod. 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 void
BaseTestMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)
void
ClonedMethod. setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz)
void
LiteWeightTestNGMethod. 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()
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 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.
-