org.unitils.objectvalidation.rules.ToStringMustContainsEveryFieldRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unitils-objectvalidation Show documentation
Show all versions of unitils-objectvalidation Show documentation
Unitils module to validate objects.
package org.unitils.objectvalidation.rules;
import static java.lang.reflect.Modifier.isStatic;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.Field;
import org.unitils.objectvalidation.ObjectCreator;
import org.unitils.objectvalidation.Rule;
/**
* Rule to check that the toString method returns a string with every field named in it.
*
* @author Matthieu Mestrez
* @since Oct 24, 2013
*/
public class ToStringMustContainsEveryFieldRule implements Rule {
private ObjectCreator objectCreator;
public ToStringMustContainsEveryFieldRule(ObjectCreator objectCreator) {
this.objectCreator = objectCreator;
}
@Override
public void validate(Class> classToValidate) {
Field[] fields = classToValidate.getDeclaredFields();
Object objectToTest = objectCreator.createRandomObject(classToValidate);
for (Field field : fields) {
if (!isStatic(field.getModifiers())) {
assertTrue("The field " + field.getName() + " is not in the toString :\n" + objectToTest.toString(),
objectToTest.toString().contains(field.getName()));
}
}
}
}