label property

String get label

Label shown to the user in the UI.

Note that the label has some significance if the user requests that tests be re-run in a certain way. For example, if tests were run normally and the user requests to re-run them in debug mode, the editor will attempt use a configuration with the same label of the Debug kind. If there is no such configuration, the default will be used.

Implementation

_i2.String get label => _i5.getProperty(
      this,
      'label',
    );
set label (String value)

Implementation

set label(_i2.String value) {
  _i5.setProperty(
    this,
    'label',
    value,
  );
}