blob: 2787e976e1256242a1e50b120991d26206051fbc [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.matchers.apachecommons;
import org.mockito.ArgumentMatcher;
import java.io.Serializable;
public class ReflectionEquals implements ArgumentMatcher<Object>, Serializable {
private final Object wanted;
private final String[] excludeFields;
public ReflectionEquals(Object wanted, String... excludeFields) {
this.wanted = wanted;
this.excludeFields = excludeFields;
}
public boolean matches(Object actual) {
return EqualsBuilder.reflectionEquals(wanted, actual, excludeFields);
}
public String toString() {
return "refEq(" + wanted + ")";
}
}