Package org.testng.internal.annotations
Class DisabledRetryAnalyzer
- java.lang.Object
-
- org.testng.internal.annotations.DisabledRetryAnalyzer
-
- All Implemented Interfaces:
IRetryAnalyzer
public class DisabledRetryAnalyzer extends java.lang.Object implements IRetryAnalyzer
A No operation retry analyzer that exists just to let us use proper types in @Test.retryAnalyzer()
-
-
Constructor Summary
Constructors Constructor Description DisabledRetryAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
retry(ITestResult result)
Returns true if the test method has to be retried, false otherwise.
-
-
-
Method Detail
-
retry
public boolean retry(ITestResult result)
Description copied from interface:IRetryAnalyzer
Returns true if the test method has to be retried, false otherwise.- Specified by:
retry
in interfaceIRetryAnalyzer
- Parameters:
result
- The result of the test method that just ran.- Returns:
- true if the test method has to be retried, false otherwise.
-
-