com.huaweicloud.sdk.cloudtest.v1.model.ExternalServiceCaseStep Maven / Gradle / Ivy
package com.huaweicloud.sdk.cloudtest.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 测试步骤,数组长度小于10
*/
public class ExternalServiceCaseStep {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "expect_result")
private String expectResult;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "test_step")
private String testStep;
public ExternalServiceCaseStep withExpectResult(String expectResult) {
this.expectResult = expectResult;
return this;
}
/**
* 测试用例预期结果信息,长度为[0-500]位字符
* @return expectResult
*/
public String getExpectResult() {
return expectResult;
}
public void setExpectResult(String expectResult) {
this.expectResult = expectResult;
}
public ExternalServiceCaseStep withTestStep(String testStep) {
this.testStep = testStep;
return this;
}
/**
* 测试步骤描述信息,长度为[0-500]位字符
* @return testStep
*/
public String getTestStep() {
return testStep;
}
public void setTestStep(String testStep) {
this.testStep = testStep;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ExternalServiceCaseStep that = (ExternalServiceCaseStep) obj;
return Objects.equals(this.expectResult, that.expectResult) && Objects.equals(this.testStep, that.testStep);
}
@Override
public int hashCode() {
return Objects.hash(expectResult, testStep);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExternalServiceCaseStep {\n");
sb.append(" expectResult: ").append(toIndentedString(expectResult)).append("\n");
sb.append(" testStep: ").append(toIndentedString(testStep)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}