public function 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

drupal/core/vendor/phpunit/phpunit/PHPUnit/TextUI/ResultPrinter.php, line 553

Class

PHPUnit_TextUI_ResultPrinter
Prints the result of a TextUI TestRunner run.

Code

public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
  if ($this->colors) {
    $this
      ->writeProgress("\33[36;1mS\33[0m");
  }
  else {
    $this
      ->writeProgress('S');
  }
  $this->lastTestFailed = TRUE;
}