public function PHPUnit_Util_TestDox_ResultPrinter::addIncompleteTest

Incomplete test.

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

Overrides PHPUnit_Framework_TestListener::addIncompleteTest

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/TestDox/ResultPrinter.php, line 176

Class

PHPUnit_Util_TestDox_ResultPrinter
Base class for printers of TestDox documentation.

Code

public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
  if ($test instanceof $this->testTypeOfInterest) {
    $this->testStatus = PHPUnit_Runner_BaseTestRunner::STATUS_INCOMPLETE;
    $this->incomplete++;
  }
}