Package | Description |
---|---|
org.testng | |
org.testng.annotations | |
org.testng.internal | |
org.testng.internal.annotations | |
org.testng.util |
Modifier and Type | Method and Description |
---|---|
IRetryAnalyzer |
ITestNGMethod.getRetryAnalyzer()
Deprecated.
- This method stands deprecated as of TestNG 7.0.0.
Please use
ITestNGMethod.getRetryAnalyzer(ITestResult) instead. |
default IRetryAnalyzer |
ITestNGMethod.getRetryAnalyzer(ITestResult result) |
Modifier and Type | Method and Description |
---|---|
default java.lang.Class<? extends IRetryAnalyzer> |
ITestNGMethod.getRetryAnalyzerClass() |
Modifier and Type | Method and Description |
---|---|
void |
ITestNGMethod.setRetryAnalyzer(IRetryAnalyzer retryAnalyzer)
Deprecated.
- This method stands deprecated as of TestNG 7.0.0.
Please use
ITestNGMethod.setRetryAnalyzerClass(Class) instead. |
Modifier and Type | Method and Description |
---|---|
default void |
ITestNGMethod.setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) |
Modifier and Type | Method and Description |
---|---|
IRetryAnalyzer |
ITestAnnotation.getRetryAnalyzer()
Deprecated.
- This method stands deprecated as of TestNG 7.0.0.
Please use {
ITestAnnotation.getRetryAnalyzerClass() } instead. |
Modifier and Type | Method and Description |
---|---|
default java.lang.Class<? extends IRetryAnalyzer> |
ITestAnnotation.getRetryAnalyzerClass() |
Modifier and Type | Method and Description |
---|---|
void |
ITestAnnotation.setRetryAnalyzer(java.lang.Class<? extends IRetryAnalyzer> c) |
Modifier and Type | Field and Description |
---|---|
private IRetryAnalyzer |
BaseTestMethod.m_retryAnalyzer |
Modifier and Type | Field and Description |
---|---|
private java.lang.Class<? extends IRetryAnalyzer> |
BaseTestMethod.m_retryAnalyzerClass |
private java.util.Map<java.lang.String,IRetryAnalyzer> |
BaseTestMethod.m_testMethodToRetryAnalyzer |
Modifier and Type | Method and Description |
---|---|
private static IRetryAnalyzer |
TestNGMethod.cloneInstance(IRetryAnalyzer instance) |
IRetryAnalyzer |
BaseTestMethod.getRetryAnalyzer() |
IRetryAnalyzer |
WrappedTestNGMethod.getRetryAnalyzer() |
IRetryAnalyzer |
ClonedMethod.getRetryAnalyzer() |
IRetryAnalyzer |
BaseTestMethod.getRetryAnalyzer(ITestResult result) |
IRetryAnalyzer |
WrappedTestNGMethod.getRetryAnalyzer(ITestResult result) |
IRetryAnalyzer |
ClonedMethod.getRetryAnalyzer(ITestResult result) |
private IRetryAnalyzer |
BaseTestMethod.getRetryAnalyzerConsideringMethodParameteters(ITestResult tr) |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends IRetryAnalyzer> |
BaseTestMethod.getRetryAnalyzerClass() |
java.lang.Class<? extends IRetryAnalyzer> |
WrappedTestNGMethod.getRetryAnalyzerClass() |
java.lang.Class<? extends IRetryAnalyzer> |
ClonedMethod.getRetryAnalyzerClass() |
Modifier and Type | Method and Description |
---|---|
private static IRetryAnalyzer |
TestNGMethod.cloneInstance(IRetryAnalyzer instance) |
void |
BaseTestMethod.setRetryAnalyzer(IRetryAnalyzer retryAnalyzer) |
void |
WrappedTestNGMethod.setRetryAnalyzer(IRetryAnalyzer retryAnalyzer) |
void |
ClonedMethod.setRetryAnalyzer(IRetryAnalyzer retryAnalyzer) |
Modifier and Type | Method and Description |
---|---|
void |
BaseTestMethod.setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) |
void |
WrappedTestNGMethod.setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) |
void |
ClonedMethod.setRetryAnalyzerClass(java.lang.Class<? extends IRetryAnalyzer> clazz) |
Modifier and Type | Class and Description |
---|---|
class |
DisabledRetryAnalyzer
A No operation retry analyzer that exists just to let us use proper types in @
Test.retryAnalyzer() |
Modifier and Type | Field and Description |
---|---|
private IRetryAnalyzer |
TestAnnotation.m_retryAnalyzer |
Modifier and Type | Field and Description |
---|---|
private java.lang.Class<? extends IRetryAnalyzer> |
TestAnnotation.m_retryAnalyzerClass |
Modifier and Type | Method and Description |
---|---|
IRetryAnalyzer |
TestAnnotation.getRetryAnalyzer() |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends IRetryAnalyzer> |
TestAnnotation.getRetryAnalyzerClass() |
Modifier and Type | Method and Description |
---|---|
private static boolean |
TestAnnotation.isRetryAnalyzerNotTestNGInjected(java.lang.Class<? extends IRetryAnalyzer> c) |
void |
TestAnnotation.setRetryAnalyzer(java.lang.Class<? extends IRetryAnalyzer> c) |
Modifier and Type | Class and Description |
---|---|
class |
RetryAnalyzerCount
An implementation of IRetryAnalyzer that allows you to specify the maximum number of times you
want your test to be retried.
|