function TaxonomyFieldTidTest::setUp

Same name and namespace in other branches
  1. 11.x core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldTidTest.php \Drupal\Tests\taxonomy\Kernel\Views\TaxonomyFieldTidTest::setUp()
  2. 10 core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldTidTest.php \Drupal\Tests\taxonomy\Kernel\Views\TaxonomyFieldTidTest::setUp()
  3. 8.9.x core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldTidTest.php \Drupal\Tests\taxonomy\Kernel\Views\TaxonomyFieldTidTest::setUp()

File

core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldTidTest.php, line 46

Class

TaxonomyFieldTidTest
Tests the taxonomy term TID field handler.

Namespace

Drupal\Tests\taxonomy\Kernel\Views

Code

protected function setUp($import_test_views = TRUE) : void {
  parent::setUp($import_test_views);
  $this->installEntitySchema('taxonomy_term');
  $this->installConfig([
    'filter',
  ]);
  /** @var \Drupal\taxonomy\Entity\Vocabulary $vocabulary */
  $vocabulary = $this->createVocabulary();
  $this->term1 = $this->createTerm($vocabulary);
  ViewTestData::createTestViews(static::class, [
    'taxonomy_test_views',
  ]);
}

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