You are here

TaxonomyDefaultArgumentTest.php in Drupal 8

File

core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php
View source
<?php

namespace Drupal\Tests\taxonomy\Functional\Views;


/**
 * Tests the representative node relationship for terms.
 *
 * @group taxonomy
 */
class TaxonomyDefaultArgumentTest extends TaxonomyTestBase {

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'taxonomy_default_argument_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Tests escaping of page title when the taxonomy plugin provides it.
   */
  public function testTermTitleEscaping() {
    $this->term1
      ->setName('<em>Markup</em>')
      ->save();
    $this
      ->drupalGet('taxonomy_default_argument_test/' . $this->term1
      ->id());
    $this
      ->assertEscaped($this->term1
      ->label());
  }

}

Classes

Namesort descending Description
TaxonomyDefaultArgumentTest Tests the representative node relationship for terms.