io.qase.commons.config.TestopsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qase-java-commons Show documentation
Show all versions of qase-java-commons Show documentation
Qase TMS Reporter's common classes
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