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

io.qase.commons.config.TestopsConfig Maven / Gradle / Ivy

The newest version!
package io.qase.commons.config;

public class TestopsConfig {
    public String project = "";
    public boolean defect = false;
    public boolean useV2 = true;
    public ApiConfig api;
    public RunConfig run;
    public PlanConfig plan;
    public BatchConfig batch;

    public TestopsConfig() {
        this.api = new ApiConfig();
        this.run = new RunConfig();
        this.plan = new PlanConfig();
        this.batch = new BatchConfig();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy