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

com.tngtech.jgiven.annotation.ExtendedDescription Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.annotation;

import java.lang.annotation.*;

/**
 * This annotation can be used to define an extended description for a step method or a test method.
 * This description is added to the report.
 */
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.METHOD } )
@Documented
public @interface ExtendedDescription {

    /**
     * The extended description of the step.
     */
    String value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy