public void testFailedWithUnicodeEscapeInMessage()
throws ReporterException, IOException
{
final StandardTestRun standardTestRun = new StandardTestRun();
ReportEntry expected = createReportEntryWithSpecialMessage( "We, \\u0177 people" );
standardTestRun.run().testFailed( expected );
standardTestRun.assertExpected( MockReporter.TEST_FAILED, expected );
}