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

net.thucydides.core.model.Screenshot Maven / Gradle / Ivy

There is a newer version: 0.9.275
Show newest version
package net.thucydides.core.model;

/**
 * Represents a screenshot stored during a test execution.
 */
public class Screenshot {
    private final String filename;
    private final String description;

    public Screenshot(final String filename,
                      final String description) {
        this.filename = filename;
        this.description = description;
    }


    public String getFilename() {
        return filename;
    }

    public String getDescription() {
        return description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy