io.qameta.allure.kotlin.junit4.DisplayName.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-kotlin-junit4 Show documentation
Show all versions of allure-kotlin-junit4 Show documentation
Module allure-kotlin-junit4 of Allure Framework.
package io.qameta.allure.kotlin.junit4
import java.lang.annotation.Inherited
/**
* Used to change display name for test in the report.
*/
@MustBeDocumented
@Inherited
@Retention(AnnotationRetention.RUNTIME)
@Target(
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.ANNOTATION_CLASS,
AnnotationTarget.CLASS
)
annotation class DisplayName(val value: String)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy