public function PHPUnit_Util_Log_JSON::endTest

A test ended.

Parameters

PHPUnit_Framework_Test $test:

float $time:

Overrides PHPUnit_Framework_TestListener::endTest

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/Log/JSON.php, line 210

Class

PHPUnit_Util_Log_JSON
A TestListener that generates JSON messages.

Code

public function endTest(PHPUnit_Framework_Test $test, $time) {
  if ($this->currentTestPass) {
    $this
      ->writeCase('pass', $time, array(), '', $test);
  }
}