assertTrue(condition.check(new Person("boness", "boness", 88)));
}
public void testCheck_Failure() throws Exception {
Condition condition = new EqualPropertiesBeanCondition("name", "nickname");
assertFalse(condition.check(new Person("uri", "boness", 88)));
}
public void testCheck_FailureWithArray() throws Exception {
Condition condition = new EqualPropertiesBeanCondition(new String[]{"name", "nickname"});
assertFalse(condition.check(new Person("uri", "boness", 88)));