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

nl.topicus.jdbc.shaded.org.hamcrest.MatcherAssert Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
/*  Copyright (c) 2000-2006 hamcrest.org
 */
package nl.topicus.jdbc.shaded.org.hamcrest.


public class MatcherAssert {
    public static  void assertThat(T actual, Matcher matcher) {
        assertThat("", actual, matcher);
    }
    
    public static  void assertThat(String reason, T actual, Matcher matcher) {
        if (!matcher.matches(actual)) {
            Description description = new StringDescription();
            description.appendText(reason)
                       .appendText("\nExpected: ")
                       .appendDescriptionOf(matcher)
                       .appendText("\n     but: ");
            matcher.describeMismatch(actual, description);
            
            throw new AssertionError(description.toString());
        }
    }
    
    public static void assertThat(String reason, boolean assertion) {
        if (!assertion) {
            throw new AssertionError(reason);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy