Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/Utility/HtmlTest.php \Drupal\Tests\Component\Utility\HtmlTest::testDecodeEntities()
  2. 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 243

Class

HtmlTest
Tests \Drupal\Component\Utility\Html.

Namespace

Drupal\Tests\Component\Utility

Code

public function testDecodeEntities($text, $expected) {
  $this
    ->assertEquals($expected, Html::decodeEntities($text));
}