@Test
  public void testCaseReportRuleStartedTest() throws Exception {
    Description description = mock(Description.class);
    when(description.getAnnotations()).thenReturn(Collections.<Annotation>emptyList());
    when(description.getMethodName()).thenReturn("some.method.name");

    testCaseReportRule.starting(description);
    verify(allure).fire(eq(new TestCaseStartedEvent("some.uid", "some.method.name")));
  }