rest.ResultOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-cucumber Show documentation
Show all versions of rest-cucumber Show documentation
Rest Cucumber allows you to attach a rest client for retrieval of Cucumber feature files and posting of Cucumber test results
package rest;
import java.util.Map;
public class ResultOutput {
private static final String TEST_NAME = "Automated cucumber test";
private String issueId;
private String result;
private String comment;
private Map scenarioResults;
public ResultOutput(String issueId, String result, String comment,
Map scenarioResults) {
this.issueId = issueId;
this.result = result;
this.comment = comment;
this.scenarioResults = scenarioResults;
}
public String getIssueId() {
return issueId;
}
public String getResult() {
return result;
}
public String getComment() {
return comment;
}
public Map getScenarioResults() {
return scenarioResults;
}
public String getTestName() {
return TEST_NAME;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy