org.testobject.rest.api.model.StaticInstrumentationRequestData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-java-api Show documentation
Show all versions of testobject-java-api Show documentation
java wrapper for testobject's java apis
package org.testobject.rest.api.model;
import java.util.List;
import java.util.Map;
public class StaticInstrumentationRequestData {
private final String testName;
private final String testSpecAppId;
private final String appUnderTestAppId;
private final String dataCenterId;
private final String deviceName;
private final String tunnelIdentifier;
private final Map testOptions;
private final List testsToRun;
public StaticInstrumentationRequestData(String testName, String testSpecAppId, String appUnderTestAppId, String dataCenterId,
String deviceName, String tunnelIdentifier, Map testOptions, List testsToRun) {
this.testName = testName;
this.testSpecAppId = testSpecAppId;
this.appUnderTestAppId = appUnderTestAppId;
this.dataCenterId = dataCenterId;
this.deviceName = deviceName;
this.tunnelIdentifier = tunnelIdentifier;
this.testOptions = testOptions;
this.testsToRun = testsToRun;
}
public String getTestSpecAppId() {
return testSpecAppId;
}
public String getAppUnderTestAppId() {
return appUnderTestAppId;
}
public String getDataCenterId() {
return dataCenterId;
}
public String getDeviceName() {
return deviceName;
}
public String getTunnelIdentifier() {
return tunnelIdentifier;
}
public String getTestName() {
return testName;
}
public Map getTestOptions() {
return testOptions;
}
public List getTestsToRun() {
return testsToRun;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy