com.testfabrik.webmate.javasdk.testmgmt.TestTemplate Maven / Gradle / Ivy
package com.testfabrik.webmate.javasdk.testmgmt;
import com.testfabrik.webmate.javasdk.testmgmt.testtypes.TestType;
import java.util.Collection;
public class TestTemplate {
private TestTemplateInfo info;
private TestType testType;
private Collection models;
private Collection params;
// For jackson
public TestTemplate() { }
public TestTemplate(TestTemplateInfo info, TestType testType, Collection models, Collection params) {
this.info = info;
this.testType = testType;
this.models = models;
this.params = params;
}
public TestTemplateInfo getInfo() {
return info;
}
public TestType getTestType() {
return testType;
}
public Collection getModels() {
return models;
}
public Collection getParams() {
return params;
}
}