com.applitools.eyes.FailureReports Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java3 Show documentation
Show all versions of eyes-sdk-core-java3 Show documentation
Applitools Eyes SDK base for Java
The newest version!
package com.applitools.eyes;
/**
* Determines how detected failures are reported.
*/
public enum FailureReports {
/**
* Failures are reported immediately when they are detected.
*/
IMMEDIATE("Immediate"),
/**
* Failures are reported when tests are completed
*/
ON_CLOSE("OnClose");
private final String name;
FailureReports(String name) {
this.name = name;
}
public String getName() {
return name;
}
}