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

no.nav.sbl.dialogarena.test.match.Matchers Maven / Gradle / Ivy

There is a newer version: 2.2023.01.10_13.49-81ddc732df3a
Show newest version
package no.nav.sbl.dialogarena.test.match;

import org.hamcrest.Matcher;

import java.util.function.Predicate;

public final class Matchers {

    private Matchers() {
    }

    public static  Matcher match(Predicate predicate) {
        return new PredicateAsMatcher<>(predicate);
    }

    public static  Matcher match(String description, Predicate predicate) {
        return new PredicateAsMatcher<>(description, predicate);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy