@Test
public void testInitialValuesUpdateTestCaseStartedEvent() throws Exception {
AnnotationManager annotationManager = setAnnotationManager("simpleMethod");
TestCaseStartedEvent event = new TestCaseStartedEvent("some.uid", "some.name");
annotationManager.update(event);
assertThat(event.getTitle(), equalTo("some.title"));
Description description = annotationManager.getDescription();
assertThat(description.getValue(), is("some.description"));
assertThat(description.getType(), is(DescriptionType.TEXT));
assertThat(event.getLabels(), hasItems(
createStoryLabel("some.story"),
createFeatureLabel("some.feature"),
createSeverityLabel(SeverityLevel.BLOCKER),
createIssueLabel("some.simple.issue"),
createIssueLabel("some.nested.issue.1"),