You are here

public function PHPUnit_Util_Log_JUnit::addIncompleteTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Util/Log/JUnit.php \PHPUnit_Util_Log_JUnit::addIncompleteTest()

Incomplete test.

Parameters

PHPUnit_Framework_Test $test:

Exception $e:

float $time:

Overrides PHPUnit_Framework_TestListener::addIncompleteTest

File

vendor/phpunit/phpunit/src/Util/Log/JUnit.php, line 193

Class

PHPUnit_Util_Log_JUnit
A TestListener that generates a logfile of the test execution in XML markup.

Code

public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
  if ($this->logIncompleteSkipped && $this->currentTestCase !== null) {
    $error = $this->document
      ->createElement('error', PHPUnit_Util_XML::prepareString("Incomplete Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
    $error
      ->setAttribute('type', get_class($e));
    $this->currentTestCase
      ->appendChild($error);
    $this->testSuiteErrors[$this->testSuiteLevel]++;
  }
  else {
    $this->attachCurrentTestCase = false;
  }
}