TermCacheTagsTest.php

Same filename in other branches
  1. 9 core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php
  2. 10 core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php
  3. 11.x core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php

Namespace

Drupal\Tests\taxonomy\Functional

File

core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php

View source
<?php

namespace Drupal\Tests\taxonomy\Functional;

use Drupal\taxonomy\Entity\Vocabulary;
use Drupal\taxonomy\Entity\Term;
use Drupal\Tests\system\Functional\Entity\EntityWithUriCacheTagsTestBase;

/**
 * Tests the Taxonomy term entity's cache tags.
 *
 * @group taxonomy
 */
class TermCacheTagsTest extends EntityWithUriCacheTagsTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'taxonomy',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function createEntity() {
        // Create a "Camelids" vocabulary.
        $vocabulary = Vocabulary::create([
            'name' => 'Camelids',
            'vid' => 'camelids',
        ]);
        $vocabulary->save();
        // Create a "Llama" taxonomy term.
        $term = Term::create([
            'name' => 'Llama',
            'vid' => $vocabulary->id(),
        ]);
        $term->save();
        return $term;
    }

}

Classes

Title Deprecated Summary
TermCacheTagsTest Tests the Taxonomy term entity's cache tags.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.