Overrides Command::execute
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); }