matlab.unittest.Verbosity class

Package: matlab.unittest

Verbosity level enumeration class

Description

The matlab.unittest.Verbosity enumeration class provides a means to specify the level of detail related to running 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.unittest.Verbosity.MemberName creates an instance of the verbosity level enumeration class.

Examples

collapse all

n = matlab.unittest.Verbosity.Detailed
n = 

    Detailed

Display information about the variables.

whos n
  Name      Size            Bytes  Class                        Attributes

  n         1x1               112  matlab.unittest.Verbosity  
Introduced in R2014b