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

org.hamcrest.JavaLangMatcherAssert Maven / Gradle / Ivy

Go to download

Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock.

The newest version!
package org.hamcrest;

/**
 * Integration method for use with Java's assert keyword.
 * Example:
 * 
 * assert that("Foo", startsWith("f"));
 * 
* * @author Neil Dunn */ public class JavaLangMatcherAssert { private JavaLangMatcherAssert() {}; public static boolean that(T argument, Matcher matcher) { return matcher.matches(argument); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy