org.mockito.internal.matchers.CompareTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.matchers;
import org.hamcrest.Description;
import org.mockito.ArgumentMatcher;
public abstract class CompareTo> extends ArgumentMatcher {
private final Comparable wanted;
public CompareTo(Comparable value) {
this.wanted = value;
}
@SuppressWarnings("unchecked")
public boolean matches(Object actual) {
if(!(actual instanceof Comparable)) {
return false;
}
return matchResult(((Comparable) actual).compareTo(wanted));
}
public void describeTo(Description description) {
description.appendText(getName() + "(" + wanted + ")");
}
protected abstract String getName();
protected abstract boolean matchResult(int result);
}