All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tapirtest.allure2.AllureLabel Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.tapirtest.allure2;

/**
 * Contains all the valid Allure labels.
 * 
 * @author Oliver Libutzki {@literal <}[email protected]{@literal >}
 * 
 * @since 1.0.0
 */
public enum AllureLabel {

    OWNER( "owner" ), SEVERITY( "severity" ), ISSUE( "issue" ), TAG( "tag" ), TEST_TYPE( "testType" ), PARENT_SUITE( "parentSuite" ), SUITE( "suite" ), SUB_SUITE( "subSuite" ), PACKAGE( "package" ), EPIC( "epic" ), FEATURE( "feature" ), STORY( "story" ), TEST_CLASS( "testClass" ), TEST_METHOD( "testMethod" ), HOST( "host" ), THREAD( "thread" ), LANGUAGE( "language" ), FRAMEWORK( "framework" ), RESULT_FORMAT( "resultFormat" );

    private final String value;

    AllureLabel( final String value ) {
        this.value = value;
    }

    public String getValue( ) {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy