function Application::executeHelpCommandWhenThereIsNothingElseToDo
1 call to Application::executeHelpCommandWhenThereIsNothingElseToDo()
- Application::run in vendor/
phpunit/ phpunit/ src/ TextUI/ Application.php
File
-
vendor/
phpunit/ phpunit/ src/ TextUI/ Application.php, line 497
Class
- Application
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\TextUICode
private function executeHelpCommandWhenThereIsNothingElseToDo(Configuration $configuration, TestSuite $testSuite) : void {
if ($testSuite->isEmpty() && !$configuration->hasCliArguments() && $configuration->testSuite()
->isEmpty()) {
$this->execute(new ShowHelpCommand(Result::FAILURE));
}
}