com.rmn.testrail.entity.TestRunGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrailsdk Show documentation
Show all versions of testrailsdk Show documentation
A package for managing your TestRail information
package com.rmn.testrail.entity;
import org.codehaus.jackson.annotate.JsonProperty;
import java.util.List;
/**
* This object represents the entity you get in a TestRun under the "entries" element. It's not there when you query lists of TestRuns, only when you query individual TestRuns
*
* @author mmerrell
*/
public class TestRunGroup extends BaseEntity {
@JsonProperty("id")
private String id;
public String getId() { return id; }
public void setId( String id ) { this.id = id; }
@JsonProperty("name")
private String name;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
@JsonProperty("suite_id")
private Integer suiteId;
public Integer getSuiteId() { return suiteId; }
public void setSuiteId(Integer suiteId) { this.suiteId = suiteId; }
@JsonProperty("runs")
private List runs;
public List getRuns() { return runs; }
public void setRuns(List runs) { this.runs = runs; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy