java.lang.Object
java.lang.Enum<Details>
org.junit.platform.console.options.Details
All Implemented Interfaces:
Serializable, Comparable<Details>, java.lang.constant.Constable

@API(status=INTERNAL, since="1.0") public enum Details extends Enum<Details>
Since:
1.0
  • Enum Constant Details

    • NONE

      public static final Details NONE
      No test plan execution details are printed.
    • SUMMARY

      public static final Details SUMMARY
      Print summary table of counts only.
    • FLAT

      public static final Details FLAT
      Test plan execution details are rendered in a flat, line-by-line mode.
    • TREE

      public static final Details TREE
      Test plan execution details are rendered as a simple tree.
    • VERBOSE

      public static final Details VERBOSE
      Combines TREE and FLAT modes.
    • TESTFEED

      public static final Details TESTFEED
      Test plan execution events are rendered as they occur in a concise format.
      Since:
      1.10
  • Method Details

    • values

      public static Details[] 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 Details 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
    • toString

      public String toString()
      Return lower case Enum.name() for easier usage in help text for available options.
      Overrides:
      toString in class Enum<Details>