public class TextMatcherTest {
@Test
public void doesNotMatchObjectsWithNoGetTextMethod() throws Exception {
Matcher matcher = withText("Some Text");
assertFalse(matcher.matches(new Object()));
}
@Test
public void doesNotMatchObjectsWithNullGetText() throws Exception {
Matcher matcher = withText("Some Text");