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

net.sf.cotta.test.matcher.LessThanMatcher Maven / Gradle / Ivy

The newest version!
package net.sf.cotta.test.matcher;

import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;

public class LessThanMatcher, K> extends BaseMatcher {
  private T value;

  public LessThanMatcher(T value) {
    this.value = value;
  }

  @SuppressWarnings({"unchecked"})
  public boolean matches(Object o) {
    return value.compareTo((K) o) > 0;
  }

  public void describeTo(Description description) {
    description.appendText("less than ").appendValue(value);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy