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

net.masterthought.cucumber.json.Artifact Maven / Gradle / Ivy

Go to download

Provides pretty html reports for Cucumber. It works by generating html from the cucumber json file.

There is a newer version: 5.8.2
Show newest version
package net.masterthought.cucumber.json;

public class Artifact {

    private String scenario;
    private String step;
    private String keyword;
    private String artifactFile;
    private String contentType;

    public Artifact(String scenario, String step, String keyword, String artifactFile, String contentType) {
        this.scenario = scenario;
        this.step = step;
        this.keyword = keyword;
        this.artifactFile = artifactFile;
        this.contentType = contentType;
    }

    public String getScenario() {
        return scenario;
    }

    public String getKeyword() {
        return keyword;
    }

    public String getStep() {
           return step;
       }

    public String getArtifactFile() {
        return artifactFile;
    }

    public String getContentType(){
        return contentType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy