Annotation Type ExtensibleWidget


  • @Inherited
    @Retention(RUNTIME)
    @Target(TYPE)
    public @interface ExtensibleWidget
    Annotation to indicate that testing widget should be extensible. Every test class that extends AbstractCockpitngUnitTest by default consider widget as extensible
    • Field Summary

      Fields 
      Modifier and Type Fields Description
      static int ALL  
      static int CONSTRUCTORS  
      static int FIELDS  
      static int METHODS  
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      int level  
      java.lang.String privateMethodsProviderName
      name of method in your testing class, that allows specify methods which are on purpose inextensible.
      boolean value  
    • Field Detail

      • CONSTRUCTORS

        static final int CONSTRUCTORS
      • METHODS

        static final int METHODS
      • FIELDS

        static final int FIELDS
      • ALL

        static final int ALL
    • Element Detail

      • level

        int level
        Default:
        10
      • value

        boolean value
        Default:
        true
      • privateMethodsProviderName

        java.lang.String privateMethodsProviderName
        name of method in your testing class, that allows specify methods which are on purpose inextensible. This method should has no arguments, and return List
        Returns:
        See Also:
        InextensibleMethod
        Default:
        ""