Package net.jqwik.api

Enum Class Reporting

java.lang.Object
java.lang.Enum<Reporting>
net.jqwik.api.Reporting
All Implemented Interfaces:
Serializable, Comparable<Reporting>, Constable

@API(status=MAINTAINED, since="1.0") public enum Reporting extends Enum<Reporting>
  • Enum Constant Details

    • GENERATED

      public static final Reporting GENERATED
      GENERATED will report each generated set of the parameters. This means that after each property test, summary table will be printed.
    • FALSIFIED

      public static final Reporting FALSIFIED
      FALSIFIED will report each set of parameters that is falsified during shrinking. i.e., report "table" will be printed only when some test fails.
  • Method Details

    • values

      public static Reporting[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Reporting valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • containedIn

      public boolean containedIn(Reporting[] reporting)