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

com.applitools.eyes.exceptions.DiffsFoundException Maven / Gradle / Ivy

The newest version!
package com.applitools.eyes.exceptions;

import com.applitools.eyes.TestResults;

/**
 * Indicates that an existing test ended, and that differences where found from the baseline.
 */
public class DiffsFoundException extends TestFailedException {
    public DiffsFoundException(TestResults testResults, String scenarioIdOrName, String appIdOrName){
        super(testResults, String.format("Test '%s' of '%s' detected differences! See details at: %s",
                scenarioIdOrName,
                appIdOrName,
                testResults.getUrl()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy