Annotation Type ExpectWarning


  • @Deprecated
    @Retention(CLASS)
    public @interface ExpectWarning
    Deprecated.
    The annotation based approach is useless for lambdas. Write expectations using edu.umd.cs.findbugs.test.matcher.BugInstanceMatcher matchers in test source directory
    Annotation indicating that a FindBugs warning is expected. See http://code.google.com/p/findbugs/wiki/FindbugsTestCases
    Author:
    David Hovemeyer
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      Deprecated.
      The value indicates the bug code (e.g., NP) or bug pattern (e.g., IL_INFINITE_LOOP) of the expected warning.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      Confidence confidence
      Deprecated.
      Want a warning at this priority or higher
      int num
      Deprecated.
      Expect at least this many warnings
      int rank
      Deprecated.
      Expect a warning at least this scary
    • Element Detail

      • value

        java.lang.String value
        Deprecated.
        The value indicates the bug code (e.g., NP) or bug pattern (e.g., IL_INFINITE_LOOP) of the expected warning. Can be a comma-separated list.
      • confidence

        Confidence confidence
        Deprecated.
        Want a warning at this priority or higher
        Default:
        edu.umd.cs.findbugs.annotations.Confidence.LOW
      • rank

        int rank
        Deprecated.
        Expect a warning at least this scary
        Default:
        20
      • num

        int num
        Deprecated.
        Expect at least this many warnings
        Default:
        1