@Test
 public void testCaseReportRuleSkippedTest() throws Exception {
   AssumptionViolatedException throwable = new AssumptionViolatedException("atata");
   testCaseReportRule.skipped(throwable, mock(Description.class));
   verify(allure).fire(eq(new TestCaseSkippedEvent().withThrowable(throwable)));
 }