public function PHPUnit_Util_Log_TAP::addError

An error occurred.

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

Overrides PHPUnit_Framework_TestListener::addError

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/Log/TAP.php, line 95

Class

PHPUnit_Util_Log_TAP
A TestListener that generates a logfile of the test execution using the Test Anything Protocol (TAP).

Code

public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
  $this
    ->writeNotOk($test, 'Error');
}