com.fitbur.mockito.internal.matchers.GreaterThan Maven / Gradle / Ivy
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito.internal.matchers;
import java.io.Serializable;
public class GreaterThan> extends CompareTo implements Serializable {
public GreaterThan(Comparable value) {
super(value);
}
@Override
protected String getName() {
return "gt";
}
@Override
protected boolean matchResult(int result) {
return result > 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy