com.tngtech.jgiven.annotation
Annotation Type Description


@Retention(value=RUNTIME)
@Target(value={METHOD,TYPE})
@Documented
public @interface Description

This annotation can be used to give a test class a description.

Deprecated usage

The @Description annotation can also be used to change the representation of a step method or test method. This value is then used in the generated report instead of using the method name. Note that this usage of this annotation is deprecated and you should use the As annotation instead.

See Also:
As

Required Element Summary
 java.lang.String value
          The description of the test class.
 

Element Detail

value

public abstract java.lang.String value
The description of the test class.