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

com.pivotallabs.greatexpectations.matchers.DateMatcher Maven / Gradle / Ivy

There is a newer version: 0.14
Show newest version
package com.pivotallabs.greatexpectations.matchers;

import com.pivotallabs.greatexpectations.MatcherOf;

import java.util.Date;

@MatcherOf(Date.class)
public class DateMatcher> extends ComparableMatcher {
  public boolean toBeLaterThan(T expectedDateThreshold) {
    return toBeGreaterThan(expectedDateThreshold);
  }

  public boolean toBeEarlierThan(T expectedDateThreshold) {
    return toBeLessThan(expectedDateThreshold);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy