@Test
public void should_generate_an_HTML_report_for_an_acceptance_test_run_with_issue_numbers_in_the_test_name() throws Exception {
TestOutcome testOutcome = new TestOutcome("A simple test case (#ISSUE-123, #ISSUE-145)");
testOutcome.recordStep(TestStepFactory.successfulTestStepCalled("step 1"));
File htmlReport = reporter.generateReportFor(testOutcome, allTestOutcomes);
assertThat(htmlReport.getName(), is(Digest.ofTextValue("a_simple_test_case") + ".html"));
}