com.dadrox.sbt.junit.Config Maven / Gradle / Ivy
package com.dadrox.sbt.junit;
public class Config {
public boolean colorsEnabled;
public boolean outputEnabled;
public boolean verboseTraces;
public boolean shortTraces;
public boolean testStart;
public boolean testPass;
public boolean suiteStart;
public Config(boolean colorsEnabled, boolean outputEnabled, boolean verboseTraces, boolean shortTraces, boolean testStart, boolean testPass,
boolean suiteStart) {
this.colorsEnabled = colorsEnabled;
this.outputEnabled = outputEnabled;
this.verboseTraces = verboseTraces;
this.shortTraces = shortTraces;
this.testStart = testStart;
this.testPass = testPass;
this.suiteStart = suiteStart;
}
@Override
public String toString() {
return "Config [colorsEnabled=" + colorsEnabled + ", outputEnabled=" + outputEnabled + ", verboseTraces=" + verboseTraces + ", shortTraces="
+ shortTraces + ", testStart=" + testStart + ", testPass=" + testPass + ", suiteStart=" + suiteStart + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy