Class LauncherConstants


  • @API(status=EXPERIMENTAL,
         since="1.3")
    public class LauncherConstants
    extends java.lang.Object
    Collection of constants related to Launcher.
    Since:
    1.3
    See Also:
    ConfigurationParameters
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int CAPTURE_MAX_BUFFER_DEFAULT
      Default maximum number of bytes for buffering to use per thread and output type if output capturing is enabled.
      static java.lang.String CAPTURE_MAX_BUFFER_PROPERTY_NAME
      Property name used to configure the maximum number of bytes for buffering to use per thread and output type if output capturing is enabled: "junit.platform.output.capture.maxBuffer"
      static java.lang.String CAPTURE_STDERR_PROPERTY_NAME
      Property name used to enable capturing output to System.err: "junit.platform.output.capture.stderr"
      static java.lang.String CAPTURE_STDOUT_PROPERTY_NAME
      Property name used to enable capturing output to System.out: "junit.platform.output.capture.stdout"
      static java.lang.String STDERR_REPORT_ENTRY_KEY
      Key used to publish captured output to System.err as part of a ReportEntry: "stderr"
      static java.lang.String STDOUT_REPORT_ENTRY_KEY
      Key used to publish captured output to System.out as part of a ReportEntry: "stdout"
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • CAPTURE_MAX_BUFFER_PROPERTY_NAME

        public static final java.lang.String CAPTURE_MAX_BUFFER_PROPERTY_NAME
        Property name used to configure the maximum number of bytes for buffering to use per thread and output type if output capturing is enabled: "junit.platform.output.capture.maxBuffer"

        Value must be an integer; defaults to 4194304.

        See Also:
        CAPTURE_MAX_BUFFER_DEFAULT, Constant Field Values
      • STDOUT_REPORT_ENTRY_KEY

        public static final java.lang.String STDOUT_REPORT_ENTRY_KEY
        Key used to publish captured output to System.out as part of a ReportEntry: "stdout"
        See Also:
        Constant Field Values
      • STDERR_REPORT_ENTRY_KEY

        public static final java.lang.String STDERR_REPORT_ENTRY_KEY
        Key used to publish captured output to System.err as part of a ReportEntry: "stderr"
        See Also:
        Constant Field Values