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

dev.galasa.framework.spi.ras.RasTestClass Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi.ras;


public class RasTestClass {
    
    public String testclass;
    public String bundle;

    public RasTestClass(String testClass, String bundleName) {
        this.testclass = testClass;
        this.bundle = bundleName;
    }

    public String getTestClass() {
        return this.testclass;
    }

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

    public String getBundleName() {
        return this.bundle;
    }

    public void setBundleName(String bundleName) {
        this.bundle = bundleName;
    }

    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy