(ITestResult result)
| 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 |
nothing calls this directly
no test coverage detected