io.github.davidebocca.util.unit.test.rules.conf.UnitTestPojoConf 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 UnitTestPojoConf extends UnitTestConf {
private List fieldExclusions;
public List getFieldExclusions() {
if (fieldExclusions == null) {
fieldExclusions = new ArrayList<>();
}
return fieldExclusions;
}
public void setFieldExclusions(List fieldExclusions) {
this.fieldExclusions = fieldExclusions;
}
}