Package com.thoughtworks.gauge
Annotation Type AfterSpec
-
@Target(METHOD) @Retention(RUNTIME) public @interface AfterSpec
Methods annotated with this hook, execute after every Specification execution completes. The specification can be filtered by passing additional attributes.If there is more than one method annotated with @AfterSpec, the order of execution is as follows:
- Hooks which are not filtered by tags.
- Hooks filtered by tags.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description OperatortagAggregationString[]tags
-
-
-
Element Detail
-
tags
String[] tags
- Returns:
- Array of tags to filter which specifications the hook runs after.
- Default:
- {}
-
-
-
tagAggregation
Operator tagAggregation
- Returns:
- OR: if hook should run for a specification containing any of the tags provided AND: if hook should run for a specification containing all of the tags provided Default is AND
- Default:
- com.thoughtworks.gauge.Operator.AND
-
-