Package ru.yandex.qatools.allure.annotations

Examples of ru.yandex.qatools.allure.annotations.Title


     * 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();
    }
View Full Code Here

TOP

Related Classes of ru.yandex.qatools.allure.annotations.Title

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.