You are here

public function HtmlTitleFilterTest::testGetAllowedHtmlTags in HTML Title 8

Tests HtmlTitleFilter::getAllowHtmlTags().

See also

HtmlTitleFilter::getAllowHtmlTags()

File

tests/src/Unit/HtmlTitleFilterTest.php, line 117

Class

HtmlTitleFilterTest
@coversDefaultClass \Drupal\html_title\HtmlTitleFilter

Namespace

Drupal\Tests\html_title\Unit

Code

public function testGetAllowedHtmlTags() {
  $this
    ->assertEquals([
    'br',
    'sub',
    'sup',
  ], $this->htmlTitleFilter
    ->getAllowHtmlTags());
}