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

org.hamcrest.DiagnosingMatcher Maven / Gradle / Ivy

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

There is a newer version: 5.17.0
Show newest version
package org.hamcrest;

/**
 * TODO(ngd): Document.
 *
 * @param 
 */
public abstract class DiagnosingMatcher extends BaseMatcher {

    @Override
    public final boolean matches(Object item) {
        return matches(item, Description.NONE);
    }

    @Override
    public final void describeMismatch(Object item, Description mismatchDescription) {
        matches(item, mismatchDescription);
    }

    protected abstract boolean matches(Object item, Description mismatchDescription);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy