com.nordstrom.automation.junit.JUnitRetryAnalyzer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-foundation Show documentation
Show all versions of junit-foundation Show documentation
This is the foundation framework for JUnit automation
package com.nordstrom.automation.junit;
import org.junit.runners.model.FrameworkMethod;
/**
* JUnit Foundation retry analyzers implement this interface.
*/
public interface JUnitRetryAnalyzer {
/**
* Determine if the specified failed test should be retried.
*
* @param method failed test method
* @param thrown exception for this failed test
* @return {@code true} if test should be retried; otherwise {@code false}
*/
boolean retry(FrameworkMethod method, Throwable thrown);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy