MCPcopy Create free account
hub / github.com/TestLeafInc/Simba / retry

Method retry

src/main/java/com/force/utility/RetryTests.java:18–25  ·  view source on GitHub ↗
(ITestResult result)

Source from the content-addressed store, hash-verified

16 int retryCount = 0;
17
18 @Override
19 public boolean retry(ITestResult result) {
20 if(retryCount < ConfigurationManager.configuration().maxRetry()) {
21 retryCount++;
22 return true;
23 }
24 return false;
25 }
26
27 @SuppressWarnings("rawtypes")
28 @Override

Callers

nothing calls this directly

Calls 2

configurationMethod · 0.95
maxRetryMethod · 0.80

Tested by

no test coverage detected