public function PHPUnit_TextUI_ResultPrinter::addIncompleteTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php \PHPUnit_TextUI_ResultPrinter::addIncompleteTest()
Incomplete test.
Parameters
PHPUnit_Framework_Test $test:
Exception $e:
float $time:
Overrides PHPUnit_Framework_TestListener::addIncompleteTest
File
- vendor/
phpunit/ phpunit/ src/ TextUI/ ResultPrinter.php, line 416
Class
- PHPUnit_TextUI_ResultPrinter
- Prints the result of a TextUI TestRunner run.
Code
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
$this
->writeProgressWithColor('fg-yellow, bold', 'I');
$this->lastTestFailed = true;
}