All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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