function PlainTextOutputTest::testRenderFromHtml
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()
- 8.9.x core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()
- 10 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 33
Class
- PlainTextOutputTest
- @coversDefaultClass \Drupal\Component\Render\PlainTextOutput @group Utility
Namespace
Drupal\Tests\Component\RenderCode
public function testRenderFromHtml($expected, $string, $args = []) : void {
$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.