All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tools.testng.TestCase Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package tools.testng;

public class TestCase {
    private Integer uid = 0;
    private String projectName = "";
    private String psmKey = "";
    private String interName = "";
    private ProtocolTypeEnum protocolType;
    private String testClass = "";
    private String testMethod = "";
    private String testDesc = "";
    private Integer version = 0;

    public Integer getUid() {
        return uid;
    }

    public void setUid(Integer uid) {
        this.uid = uid;
    }

    public String getProjectName() {
        return projectName;
    }

    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }

    public String getPsmKey() {
        return psmKey;
    }

    public void setPsmKey(String psmKey) {
        this.psmKey = psmKey;
    }

    public String getInterName() {
        return interName;
    }

    public void setInterName(String interName) {
        this.interName = interName;
    }

    public ProtocolTypeEnum getProtocolType() {
        return protocolType;
    }

    public void setProtocolType(ProtocolTypeEnum protocolType) {
        this.protocolType = protocolType;
    }

    public String getTestClass() {
        return testClass;
    }

    public void setTestClass(String testClass) {
        this.testClass = testClass;
    }

    public String getTestMethod() {
        return testMethod;
    }

    public void setTestMethod(String testMethod) {
        this.testMethod = testMethod;
    }

    public String getTestDesc() {
        return testDesc;
    }

    public void setTestDesc(String testDesc) {
        this.testDesc = testDesc;
    }

    public Integer getVersion() {
        return version;
    }

    public void setVersion(Integer version) {
        this.version = version;
    }

    @Override
    public String toString() {
        return "TestCase{" +
                "uid=" + uid +
                ", projectName='" + projectName + '\'' +
                ", psmKey='" + psmKey + '\'' +
                ", interName='" + interName + '\'' +
                ", protocolType=" + protocolType +
                ", testClass='" + testClass + '\'' +
                ", testMethod='" + testMethod + '\'' +
                ", testDesc='" + testDesc + '\'' +
                ", version=" + version +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy