@Test
 public void testCaseReportRuleFailedTest() throws Exception {
   Throwable throwable = new Exception("atata");
   testCaseReportRule.failed(throwable, mock(Description.class));
   verify(allure).fire(eq(new TestCaseFailureEvent().withThrowable(throwable)));
 }