package xu.zhi.hua.testTestNg.entity;
import java.util.List;
public class XmlTestEntity {
private int success;
private int fail;
private int skip;
private int total;
private String testName;
private List<XmlTestClassEntity> xmlTestClassEntities;
private String startTime;
private String endTime;
private long elapsedTime;
private String host;
private String platform;
private String version;
@Override
public String toString() {
return "XmlTestEntity{" +
"success=" + success +
", fail=" + fail +
", skip=" + skip +
", total=" + total +
", testName='" + testName + '\'' +
", xmlTestClassEntities=" + xmlTestClassEntities +
", startTime='" + startTime + '\'' +
", endTime='" + endTime + '\'' +
", elapsedTime=" + elapsedTime +
", host='" + host + '\'' +
", platform='" + platform + '\'' +
", version='" + version + '\'' +
'}';
}
public String getTestName() {
return testName;
}
public void setTestName(String testName) {
this.testName = testName;
}
public int getSuccess() {
return success;
}
public void setSuccess(int success) {
this.success = success;
}
public int getFail() {
return fail;
}
public void setFail(int fail) {
this.fail = fail;
}
public int getSkip() {
return skip;
}
public void setSkip(int skip) {
this.skip = skip;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List<XmlTestClassEntity> getXmlTestClassEntities() {
return xmlTestClassEntities;
}
public void setXmlTestClassEntities(List<XmlTestClassEntity> xmlTestClassEntities) {
this.xmlTestClassEntities = xmlTestClassEntities;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public long getElapsedTime() {
return elapsedTime;
}
public void setElapsedTime(long elapsedTime) {
this.elapsedTime = elapsedTime;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getPlatform() {
return platform;
}
public void setPlatform(String platform) {
this.platform = platform;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}
网友评论