function PlainTextOutputTest::testRenderFromHtml
Same name and namespace in other branches
- 10 core/tests/Drupal/Tests/Component/Render/PlainTextOutputTest.php \Drupal\Tests\Component\Render\PlainTextOutputTest::testRenderFromHtml()
- 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()
Tests ::renderFromHtml().
@legacy-covers ::renderFromHtml
Attributes
#[DataProvider('providerRenderFromHtml')]
Parameters
string $expected: The expected formatted value.
string $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 36
Class
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.