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

com.testfabrik.webmate.javasdk.testmgmt.TestTemplate Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy