Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ListTestSuitesCommand.php

class ListTestSuitesCommand

@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

@internal This class is not covered by the backward compatibility promise for PHPUnit

Hierarchy

  • class \PHPUnit\TextUI\Command\ListTestSuitesCommand implements \PHPUnit\TextUI\Command\Command

Expanded class hierarchy of ListTestSuitesCommand

1 file declares its use of ListTestSuitesCommand
Application.php in vendor/phpunit/phpunit/src/TextUI/Application.php

File

vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestSuitesCommand.php, line 22

Namespace

PHPUnit\TextUI\Command
View source
final class ListTestSuitesCommand implements Command {
    private readonly TestSuiteCollection $suites;
    public function __construct(TestSuiteCollection $suites) {
        $this->suites = $suites;
    }
    public function execute() : Result {
        $buffer = $this->warnAboutConflictingOptions();
        $buffer .= 'Available test suite(s):' . PHP_EOL;
        foreach ($this->suites as $suite) {
            $buffer .= sprintf(' - %s' . PHP_EOL, $suite->name());
        }
        return Result::from($buffer);
    }
    private function warnAboutConflictingOptions() : string {
        $buffer = '';
        $configuration = Registry::get();
        if ($configuration->hasFilter()) {
            $buffer .= 'The --filter and --list-suites options cannot be combined, --filter is ignored' . PHP_EOL;
        }
        if ($configuration->hasGroups()) {
            $buffer .= 'The --group and --list-suites options cannot be combined, --group is ignored' . PHP_EOL;
        }
        if ($configuration->hasExcludeGroups()) {
            $buffer .= 'The --exclude-group and --list-suites options cannot be combined, --exclude-group is ignored' . PHP_EOL;
        }
        if ($configuration->includeTestSuite() !== '') {
            $buffer .= 'The --testsuite and --list-suites options cannot be combined, --exclude-group is ignored' . PHP_EOL;
        }
        if (!empty($buffer)) {
            $buffer .= PHP_EOL;
        }
        return $buffer;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ListTestSuitesCommand::$suites private property
ListTestSuitesCommand::execute public function Overrides Command::execute
ListTestSuitesCommand::warnAboutConflictingOptions private function
ListTestSuitesCommand::__construct public function

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal