public function HtmlTest::testDecodeEntities in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Utility/HtmlTest.php \Drupal\Tests\Component\Utility\HtmlTest::testDecodeEntities()
- 9 core/tests/Drupal/Tests/Component/Utility/HtmlTest.php \Drupal\Tests\Component\Utility\HtmlTest::testDecodeEntities()
Tests Html::decodeEntities().
@dataProvider providerDecodeEntities @covers ::decodeEntities
File
- core/
tests/ Drupal/ Tests/ Component/ Utility/ HtmlTest.php, line 237
Class
Namespace
Drupal\Tests\Component\UtilityCode
public function testDecodeEntities($text, $expected) {
$this
->assertEquals($expected, Html::decodeEntities($text));
}