new TestableString(MARY_EXECUTION_WITH_NEWLINES, ctx, new Monitor.NULL()).shouldMatch("(.*)12(.*)");
}
@Test
public void stringShouldNotRegexMatchSomething() {
Context ctx = Context.singular(null, "dummy2");
new TestableString(MARY_EXECUTION, ctx, new Monitor.NULL()).shouldNotMatch(".* blort \\d\\d.*");
try {
new TestableString(MARY_EXECUTION, ctx, new Monitor.NULL()).shouldNotMatch(".* Has \\d\\d.*");
fail("should have barfed");
} catch (FluentExecutionStopped e) {