br.eti.kinoshita.testlinkjavaapi.model.TestCaseStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testlink-java-api Show documentation
Show all versions of testlink-java-api Show documentation
TestLink Java API to interface with TestLink PHP XML-RPC API.
/**
*
*/
package br.eti.kinoshita.testlinkjavaapi.model;
import java.io.Serializable;
/**
* @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
* @since 1.9.0-1
*/
public class TestCaseStep
implements Serializable
{
private static final long serialVersionUID = -1835456164473694033L;
private Integer testCaseVersionId;
private Integer number;
private String actions;
private String expectedResults;
private ExecutionType executionType;
/**
*
*/
public TestCaseStep() {
super();
}
/**
* @param testCaseVersionId
* @param number
* @param actions
* @param expectedResults
* @param executionType
*/
public TestCaseStep(Integer testCaseVersionId, Integer number,
String actions, String expectedResults, ExecutionType executionType) {
super();
this.testCaseVersionId = testCaseVersionId;
this.number = number;
this.actions = actions;
this.expectedResults = expectedResults;
this.executionType = executionType;
}
/**
* @return the testCaseVersionId
*/
public Integer getTestCaseVersionId() {
return testCaseVersionId;
}
/**
* @param testCaseVersionId the testCaseVersionId to set
*/
public void setTestCaseVersionId(Integer testCaseVersionId) {
this.testCaseVersionId = testCaseVersionId;
}
/**
* @return the number
*/
public Integer getNumber() {
return number;
}
/**
* @param number the number to set
*/
public void setNumber(Integer number) {
this.number = number;
}
/**
* @return the actions
*/
public String getActions() {
return actions;
}
/**
* @param actions the actions to set
*/
public void setActions(String actions) {
this.actions = actions;
}
/**
* @return the expectedResults
*/
public String getExpectedResults() {
return expectedResults;
}
/**
* @param expectedResults the expectedResults to set
*/
public void setExpectedResults(String expectedResults) {
this.expectedResults = expectedResults;
}
/**
* @return the executionType
*/
public ExecutionType getExecutionType() {
return executionType;
}
/**
* @param executionType the executionType to set
*/
public void setExecutionType(ExecutionType executionType) {
this.executionType = executionType;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "TestCaseStep [testCaseVersionId=" + testCaseVersionId
+ ", number=" + number + ", actions=" + actions
+ ", expectedResults=" + expectedResults + ", executionType="
+ executionType + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy