function PlainTextOutputTest::testRenderFromHtml

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()
  2. 10 core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()
  3. 11.x core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()

Tests ::renderFromHtml().

@covers ::renderFromHtml @dataProvider providerRenderFromHtml

Parameters

$expected: The expected formatted value.

$string: A string to be formatted.

array $args: (optional) An associative array of replacements to make. Defaults to none.

File

core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php, line 30

Class

PlainTextOutputTest
@coversDefaultClass \Drupal\Component\Render\PlainTextOutput @group Utility

Namespace

Drupal\Tests\Component\Render

Code

public function testRenderFromHtml($expected, $string, $args = []) {
    $markup = new FormattableMarkup($string, $args);
    $output = PlainTextOutput::renderFromHtml($markup);
    $this->assertSame($expected, $output);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.