You are here

public function TaxonomyDefaultArgumentTest::testTermTitleEscaping in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php \Drupal\Tests\taxonomy\Functional\Views\TaxonomyDefaultArgumentTest::testTermTitleEscaping()
  2. 9 core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php \Drupal\Tests\taxonomy\Functional\Views\TaxonomyDefaultArgumentTest::testTermTitleEscaping()

Tests escaping of page title when the taxonomy plugin provides it.

File

core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php, line 27

Class

TaxonomyDefaultArgumentTest
Tests the representative node relationship for terms.

Namespace

Drupal\Tests\taxonomy\Functional\Views

Code

public function testTermTitleEscaping() {
  $this->term1
    ->setName('<em>Markup</em>')
    ->save();
  $this
    ->drupalGet('taxonomy_default_argument_test/' . $this->term1
    ->id());
  $this
    ->assertSession()
    ->assertEscaped($this->term1
    ->label());
}