Incomplete test.
PHPUnit_Framework_Test $test:
Exception $e:
float $time:
Overrides PHPUnit_Framework_TestListener::addIncompleteTest
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;
}
}