@Test
public void testCombinedValuesUpdateTestCaseStartedEvent() throws Exception {
AnnotationManager annotationManager = setAnnotationManager("combinedMethod");
TestCaseStartedEvent event = new TestCaseStartedEvent("some.uid", "some.name");
annotationManager.update(event);
assertThat(event.getTitle(), is(nullValue()));
Description description = annotationManager.getDescription();
assertThat(description, is(nullValue()));
assertThat(event.getLabels(), hasItems(
createStoryLabel("default.story"),
createFeatureLabel("default.feature"),
createSeverityLabel(SeverityLevel.CRITICAL),
createIssueLabel("initial.issue")
));