Class ConsoleConfig

    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean basic
      Disable the testing status/prompt message at the bottom of the console and log these messages to STDOUT instead.
      boolean disableColor
      Disable color in the testing status and prompt messages.
      boolean disableInput
      Disables the ability to enter input on the console.
      boolean enabled
      If test results and status should be displayed in the console.
    • Constructor Summary

      Constructors 
      Constructor Description
      ConsoleConfig()  
    • Field Detail

      • enabled

        @ConfigItem(defaultValue="true")
        public boolean enabled
        If test results and status should be displayed in the console. If this is false results can still be viewed in the dev console.
      • disableInput

        @ConfigItem(defaultValue="false")
        public boolean disableInput
        Disables the ability to enter input on the console.
      • basic

        @ConfigItem(defaultValue="false")
        public boolean basic
        Disable the testing status/prompt message at the bottom of the console and log these messages to STDOUT instead. Use this option if your terminal does not support ANSI escape sequences.
      • disableColor

        @ConfigItem(defaultValue="false")
        public boolean disableColor
        Disable color in the testing status and prompt messages. Use this option if your terminal does not support color.
    • Constructor Detail

      • ConsoleConfig

        public ConsoleConfig()