io.github.davidebocca.util.unit.test.rules.conf.ClassExclusionConf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unit-test Show documentation
Show all versions of unit-test Show documentation
Simple library to help developments of util tests
package io.github.davidebocca.util.unit.test.rules.conf;
import java.util.ArrayList;
import java.util.List;
public class ClassExclusionConf {
private List> classesToExclude;
public List> getClassesToExclude() {
if (classesToExclude == null) {
classesToExclude = new ArrayList<>();
}
return classesToExclude;
}
public void setClassesToExclude(List> classesToExclude) {
this.classesToExclude = classesToExclude;
}
}