when(description.getMethodName()).thenReturn("some.method.name");
doReturn("some.uid").when(runListener).getSuiteUid(description);
runListener.testStarted(description);
inOrder(allure).verify(allure).fire(eq(new ClearStepStorageEvent()));
inOrder(allure).verify(allure).fire(eq(
withExecutorInfo(new TestCaseStartedEvent("some.uid", "some.method.name"))
));
}