@Test
 public void a_test_outcome_title_can_be_overriden_manually_even_with_an_annotation() {
   TestOutcome outcome = TestOutcome.forTest("should_do_this", SomeAnnotatedTestScenario.class);
   outcome.setTitle("My custom title");
   assertThat(outcome.getTitle(), is("My custom title"));
 }