TaxonomyDefaultArgumentTest.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyDefaultArgumentTest.php
- 8.9.x core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php
- 10 core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyDefaultArgumentTest.php
- 10 core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php
- 11.x core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyDefaultArgumentTest.php
- 11.x core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php
Namespace
Drupal\Tests\taxonomy\Functional\ViewsFile
-
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->assertSession()
->assertEscaped($this->term1
->label());
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TaxonomyDefaultArgumentTest | Tests the representative node relationship for terms. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.