235236237238239240241242
* Find first {@link ru.yandex.qatools.allure.annotations.Title} annotation * * @return title or null if annotation doesn't present */ public String getTitle() { Title title = getAnnotation(Title.class); return title == null ? null : title.value(); }