HtmlOutputPrinter.php
Same filename in this branch
Same filename in other branches
Defines a class for providing html output results for functional tests.
In order to manage different method signatures between PHPUnit versions, we dynamically load a class dependent on the PHPUnit runner version.
Namespace
Drupal\Tests\ListenersFile
-
core/
tests/ Drupal/ Tests/ Listeners/ HtmlOutputPrinter.php
View source
<?php
/**
* @file
* Defines a class for providing html output results for functional tests.
*
* In order to manage different method signatures between PHPUnit versions, we
* dynamically load a class dependent on the PHPUnit runner version.
*/
namespace Drupal\Tests\Listeners;
use Drupal\TestTools\PhpUnitCompatibility\RunnerVersion;
class_alias("Drupal\\TestTools\\PhpUnitCompatibility\\PhpUnit" . RunnerVersion::getMajor() . "\\HtmlOutputPrinter", HtmlOutputPrinter::class);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.