assertDoesNotMatch("A substring does not match", new MatchesPattern(Pattern.compile("a")), "ab");
}
@Test
public void hasAReadableDescription() {
Matcher<?> m = new MatchesPattern(Pattern.compile("a[bc](d|e)"));
assertDescription("a string matching the pattern 'a[bc](d|e)'", m );
}