package org.hamcrest; import org.junit.Test; import static org.hamcrest.AbstractMatcherTest.assertDescription; public final class CustomMatcherTest { @Test public void usesStaticDescription() throws Exception { Matcher matcher = new CustomMatcher("I match strings") { @Override public boolean matches(Object item) { return (item instanceof String); } }; assertDescription("I match strings", matcher); } }