You are here

public function PHPUnit_TextUI_ResultPrinter::addSkippedTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php \PHPUnit_TextUI_ResultPrinter::addSkippedTest()

Skipped test.

@since Method available since Release 3.0.0

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

Overrides PHPUnit_Framework_TestListener::addSkippedTest

File

vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php, line 444

Class

PHPUnit_TextUI_ResultPrinter
Prints the result of a TextUI TestRunner run.

Code

public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
  $this
    ->writeProgressWithColor('fg-cyan, bold', 'S');
  $this->lastTestFailed = true;
}