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

com.applitools.eyes.AppOutputWithScreenshot Maven / Gradle / Ivy

There is a newer version: 2.57
Show newest version
/*
 * Applitools SDK for Selenium integration.
 */
package com.applitools.eyes;

/**
 * A container for a AppOutput along with the screenshot used for
 * creating it. (We specifically avoid inheritance so we don't have to deal
 * with serialization issues).
 */
class AppOutputWithScreenshot {
    private final AppOutput appOutput;
    private final EyesScreenshot screenshot;

    public AppOutputWithScreenshot(AppOutput appOutput,
            EyesScreenshot screenshot) {
        this.appOutput = appOutput;
        this.screenshot = screenshot;
    }

    public AppOutput getAppOutput() {
        return appOutput;
    }

    public EyesScreenshot getScreenshot() {
        return screenshot;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy