org.exparity.hamcrest.beans.comparators.IsEqual Maven / Gradle / Ivy
package org.exparity.hamcrest.beans.comparators;
import org.exparity.hamcrest.beans.TheSameAs.PropertyComparator;
/**
* Implementation of a {@link PropertyComparator} which matches a string property regardless of case
*
* @author Stewart Bissett
*/
public class IsEqual implements PropertyComparator {
public boolean matches(final T lhs, final T rhs) {
return lhs == null ? rhs == null : lhs.equals(rhs);
}
}