You are here

public static function PHPUnit_TextUI_Command::main in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/src/TextUI/Command.php \PHPUnit_TextUI_Command::main()

Parameters

bool $exit:

File

vendor/phpunit/phpunit/src/TextUI/Command.php, line 96

Class

PHPUnit_TextUI_Command
A TestRunner for the Command Line Interface (CLI) PHP SAPI Module.

Code

public static function main($exit = true) {
  $command = new static();
  return $command
    ->run($_SERVER['argv'], $exit);
}