Main Content

matlab.automation.Verbosity class

Package: matlab.automation

Verbosity level enumeration class

Renamed from matlab.unittest.Verbosity in R2023a

Description

The matlab.automation.Verbosity enumeration class provides a means to specify the level of detail related to automation, such as running automated tests. A higher value results in a higher level of detail. The enumeration class contains the following members:

Numeric RepresentationEnumeration Member NameVerbosity Description
0None

No information

1Terse

Minimal information

2Concise

Moderate amount of information

3Detailed

Some supplemental information

4Verbose

Lots of supplemental information

Construction

matlab.automation.Verbosity.MemberName creates an instance of the verbosity level enumeration class.

Examples

collapse all

v = matlab.automation.Verbosity.Detailed
v = 

  Verbosity enumeration

    Detailed

Display information about the variable v.

whos v
  Name      Size            Bytes  Class                          Attributes

  v         1x1                 8  matlab.automation.Verbosity              

Version History

Introduced in R2014b

expand all