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
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_testMethodToRetryAnalyzerprivate java.lang.Class<? extends IRetryAnalyzer>LiteWeightTestNGMethod. retryAnalyzerClassMethods in org.testng.internal that return IRetryAnalyzer Modifier and Type Method Description private static IRetryAnalyzerTestNGMethod. cloneInstance(IRetryAnalyzer instance)IRetryAnalyzerBaseTestMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerClonedMethod. getRetryAnalyzer(ITestResult result)IRetryAnalyzerLiteWeightTestNGMethod. getRetryAnalyzer(ITestResult result)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>LiteWeightTestNGMethod. 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)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()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_retryAnalyzerClassMethods 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.
-