Annotation Interface AfterSpecification


@Target(METHOD) @Retention(RUNTIME) public @interface AfterSpecification
Marks methods that are to be invoked after all examples in the specification are run.

For example:

 @AfterSpecification
 public void logAfterSpecification() {
     log("Finished specification");
 }
 
Since:
2.0.0
See Also: