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

rest.ResultOutput Maven / Gradle / Ivy

Go to download

Rest Cucumber allows you to attach a rest client for retrieval of Cucumber feature files and posting of Cucumber test results

There is a newer version: 1.3
Show newest version
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