Annotation Interface SkipOnDatabaseOption


@Retention(RUNTIME) @Target({METHOD,TYPE}) public @interface SkipOnDatabaseOption
Marker annotation used to skip a given test if the specified database option is or isn't enabled. based on whether required is set to true or false.
Author:
Chris Cranford
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    boolean
    Specifies whether the skip operation is based on if the option is enabled or disabled.
    Returns the database option that is inspected.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Specifies the reason why the test is being skipped.
  • Element Details

    • value

      String value
      Returns the database option that is inspected. The option's name should match the option name as defined by Oracle in the V$OPTION table.
    • enabled

      boolean enabled
      Specifies whether the skip operation is based on if the option is enabled or disabled.
    • reason

      String reason
      Specifies the reason why the test is being skipped.
      Default:
      ""