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

org.sitoolkit.tester.app.gentest.TestClass Maven / Gradle / Ivy

package org.sitoolkit.tester.app.gentest;

import java.util.ArrayList;
import java.util.List;

import org.sitoolkit.core.infra.srccd.SourceCode;

public class TestClass extends SourceCode {

    private List caseNos = new ArrayList();
    /**
     * テストスクリプトが配置されているパス
     */
    private String scriptPath;
    /**
     * テストスクリプトが定義されたシート名
     */
    private String sheetName = "TestScript";

    /**
     * テストクラスのパッケージ名
     */
    private String pkg;


    public TestClass() {
        setTemplate("/testclass-template.vm");
        setVar("test");
        setFileExt("java");
    }

    public List getCaseNos() {
        return caseNos;
    }

    public void setCaseNos(List caseNos) {
        this.caseNos = caseNos;
    }

    public String getScriptPath() {
        return scriptPath;
    }

    public void setScriptPath(String scriptPath) {
        this.scriptPath = scriptPath;
    }

    public String getSheetName() {
        return sheetName;
    }

    public void setSheetName(String sheetName) {
        this.sheetName = sheetName;
    }

    public String getPkg() {
        return pkg;
    }

    public void setPkg(String pkg) {
        this.pkg = pkg;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy