public function NativePhpunitPrinter::addError

An error occurred.

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

File

drupal/core/vendor/doctrine/common/tests/NativePhpunitTask.php, line 162

Class

NativePhpunitPrinter

Code

public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
  $this->_messages[] = "Test ERROR: " . $test
    ->getName() . ": " . $e
    ->getMessage();
}