org.sitoolkit.wt.gui.domain.test.TestRunParams Maven / Gradle / Ivy
package org.sitoolkit.wt.gui.domain.test;
import java.io.File;
import java.util.List;
public class TestRunParams {
private File baseDir;
private String baseUrl;
private List scripts;
private boolean debug;
private boolean parallel;
private String driverType;
public TestRunParams() {
}
public String getBaseUrl() {
return baseUrl;
}
public void setBaseUrl(String baseUrl) {
this.baseUrl = baseUrl;
}
public List getScripts() {
return scripts;
}
public void setScripts(List scripts) {
this.scripts = scripts;
}
public boolean isDebug() {
return debug;
}
public void setDebug(boolean debug) {
this.debug = debug;
}
public boolean isParallel() {
return parallel;
}
public void setParallel(boolean parallel) {
this.parallel = parallel;
}
public String getDriverType() {
return driverType;
}
public void setDriverType(String driverType) {
this.driverType = driverType;
}
public File getBaseDir() {
return baseDir;
}
public void setBaseDir(File baseDir) {
this.baseDir = baseDir;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy