Package org.testng.internal.annotations
Class DisabledRetryAnalyzer
java.lang.Object
org.testng.internal.annotations.DisabledRetryAnalyzer
- All Implemented Interfaces:
IRetryAnalyzer
A No operation retry analyzer that exists just to let us use proper types in @
Test.retryAnalyzer()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
retry
(ITestResult result) Returns true if the test method has to be retried, false otherwise.
-
Constructor Details
-
DisabledRetryAnalyzer
public DisabledRetryAnalyzer()
-
-
Method Details
-
retry
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.
-