public static function PHPUnit_TextUI_TestRunner::showError

4 calls to PHPUnit_TextUI_TestRunner::showError()

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/TextUI/TestRunner.php, line 479

Class

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

Code

public static function showError($message) {
  self::printVersionString();
  self::write($message . "\n");
  exit(self::FAILURE_EXIT);
}