com.tngtech.jgiven.annotation
Annotation Type AfterStage


@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface AfterStage

Marks methods to be executed after a stage has been executed. Essentially means that the method is executed on the next call of either given(), when(), or then().

Can be used to finish builders, for example.

It is guaranteed that methods are only invoked once.