@Test
public void should_generate_an_HTML_report_for_a_failing_manual_acceptance_test() throws Exception {
TestOutcome testOutcome = new TestOutcome("a_simple_test_case");
testOutcome.recordStep(TestStepFactory.successfulTestStepCalled("step 1"));
testOutcome.asManualTest();
testOutcome.setAnnotatedResult(TestResult.FAILURE);
File htmlReport = reporter.generateReportFor(testOutcome, allTestOutcomes);
assertThat(htmlReport.exists(), is(true));
}