
com.pivotallabs.greatexpectations.matchers.LongMatcher Maven / Gradle / Ivy
package com.pivotallabs.greatexpectations.matchers;
public class LongMatcher> extends ComparableMatcher {
public boolean toEqual(int expected) {
return actual.longValue() == expected;
}
public boolean toBeGreaterThan(int expected) {
return actual.longValue() > expected;
}
public boolean toBeLessThan(int expected) {
return actual.longValue() < expected;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy