com.rmn.testrail.entity.Step 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;
public class Step extends BaseEntity {
public Step() {
}
public Step(String content, String expected) {
this.content = content;
this.expected = expected;
}
@JsonProperty("content")
private String content;
public String getContent() { return content; }
public void setContent(String content) { this.content = content; }
@JsonProperty("expected")
private String expected;
public String getExpected() { return expected; }
public void setExpected(String expected) { this.expected = expected; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy