You are here

public function PHPUnit_Util_Log_JSON::addSkippedTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Util/Log/JSON.php \PHPUnit_Util_Log_JSON::addSkippedTest()

Skipped test.

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

Overrides PHPUnit_Framework_TestListener::addSkippedTest

File

vendor/phpunit/phpunit/src/Util/Log/JSON.php, line 121

Class

PHPUnit_Util_Log_JSON
A TestListener that generates JSON messages.

Code

public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
  $this
    ->writeCase('error', $time, PHPUnit_Util_Filter::getFilteredStacktrace($e, false), 'Skipped Test: ' . $e
    ->getMessage(), $test);
  $this->currentTestPass = false;
}