blob: 08649f7a3022fbdccef408c15584105d907a77ee [file] [log] [blame]
package org.hamcrest;
import org.junit.Test;
import static org.hamcrest.AbstractMatcherTest.assertDescription;
public final class CustomMatcherTest {
@Test public void
usesStaticDescription() throws Exception {
Matcher<String> matcher = new CustomMatcher<String>("I match strings") {
@Override
public boolean matches(Object item) {
return (item instanceof String);
}
};
assertDescription("I match strings", matcher);
}
}