org.hamcrest.JavaLangMatcherAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hamcrest-integration
Show all versions of hamcrest-integration
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 super T> matcher) {
return matcher.matches(argument);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy