driver.requireMessage(optionPane, Pattern.compile("Le.*"));
}
@Test
public void should_fail_is_message_does_match_pattern() {
JOptionPane optionPane = messageWithValue("Palpatine");
pack(optionPane, title());
try {
driver.requireMessage(optionPane, Pattern.compile("Anakin"));
failWhenExpectingException();
} catch (AssertionError e) {