help property

String get help

Implementation

String get help {
  switch (this) {
    case TestScope.active:
      return 'Run tests in the active package, '
          'based on the most recent changed file';
    case TestScope.file:
      return 'Run the test file associated with the most recent changed file';
    case TestScope.all:
      return 'Run all tests in the project';
  }
}