All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.annotations.DisabledRetryAnalyzer Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal.annotations;

import org.testng.IRetryAnalyzer;
import org.testng.ITestResult;
import org.testng.annotations.Test;

/**
 * A No operation retry analyzer that exists just to let us use proper types in @{@link
 * Test#retryAnalyzer()}
 */
public class DisabledRetryAnalyzer implements IRetryAnalyzer {
  @Override
  public boolean retry(ITestResult result) {
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy