You are here

class SimpletestUiPrinter in Drupal 9

Defines a class for providing html output links in the Simpletest UI.

Hierarchy

Expanded class hierarchy of SimpletestUiPrinter

1 file declares its use of SimpletestUiPrinter
PhpUnitTestRunner.php in core/lib/Drupal/Core/Test/PhpUnitTestRunner.php

File

core/tests/Drupal/Tests/Listeners/SimpletestUiPrinter.php, line 8

Namespace

Drupal\Tests\Listeners
View source
class SimpletestUiPrinter extends HtmlOutputPrinter {

  /**
   * {@inheritdoc}
   */
  public function write(string $buffer) : void {
    $this
      ->simpletestUiWrite($buffer);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
HtmlOutputPrinter::printResult public function
HtmlOutputPrinterTrait::$browserOutputFile protected property File to write html links to.
HtmlOutputPrinterTrait::printHtmlOutput protected function Prints the list of HTML output generated during the test.
HtmlOutputPrinterTrait::setUpHtmlOutput protected function Creates the file to list the HTML output created during the test.
HtmlOutputPrinterTrait::simpletestUiWrite public function Prints HTML output links for the Simpletest UI.
HtmlOutputPrinterTrait::__construct public function
SimpletestUiPrinter::write public function