You are here

SimpletestUiPrinter.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/Tests/Listeners/SimpletestUiPrinter.php

File

core/tests/Drupal/Tests/Listeners/SimpletestUiPrinter.php
View source
<?php

namespace Drupal\Tests\Listeners;


/**
 * Defines a class for providing html output links in the Simpletest UI.
 */
class SimpletestUiPrinter extends HtmlOutputPrinter {

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

}

Classes

Namesort descending Description
SimpletestUiPrinter Defines a class for providing html output links in the Simpletest UI.