Annotation Type AfterClassSteps


@Target(METHOD) @Deprecated @Retention(RUNTIME) public @interface AfterClassSteps
Deprecated.
Methods annotated with this hook, will be executed after every step in that particular class.

If there is more than one method annotated with @AfterClassSteps the order of execution is as follows:

  • Hooks which are not filtered by tags.
  • Hooks filtered by tags.
If there is more than one hook of these categories, they are executed in reverse alphabetical order based on method names.

  • Element Details

    • tags

      String[] tags
      Deprecated.
      Returns:
      Array of tags to filter which steps the hook executes after based on the tags in the current scenario and spec.
      Default:
      {}
    • tagAggregation

      Operator tagAggregation
      Deprecated.
      Returns:
      OR: if hook should execute for the current execution context (spec and scenario) containing any of the tags provided AND: if hook should execute for the current execution context (spec and scenario) containing all of the tags provided Default is AND
      Default:
      AND