HtmlOutputPrinter.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\TestTools\PhpUnitCompatibility\PhpUnit7File
-
core/
tests/ Drupal/ TestTools/ PhpUnitCompatibility/ PhpUnit7/ HtmlOutputPrinter.php
View source
<?php
namespace Drupal\TestTools\PhpUnitCompatibility\PhpUnit7;
use Drupal\Tests\Listeners\HtmlOutputPrinterTrait;
use PHPUnit\Framework\TestResult;
use PHPUnit\TextUI\ResultPrinter;
/**
* Defines a class for providing html output results for functional tests.
*
* @internal
*/
class HtmlOutputPrinter extends ResultPrinter {
use HtmlOutputPrinterTrait;
/**
* {@inheritdoc}
*/
public function printResult(TestResult $result) : void {
parent::printResult($result);
$this->printHtmlOutput();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
HtmlOutputPrinter | Defines a class for providing html output results for functional tests. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.