You are here

protected function TermKernelTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Tests/TermKernelTest.php \Drupal\taxonomy\Tests\TermKernelTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/taxonomy/src/Tests/TermKernelTest.php, line 30
Contains \Drupal\taxonomy\Tests\TermKernelTest.

Class

TermKernelTest
Kernel tests for taxonomy term functions.

Namespace

Drupal\taxonomy\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig(array(
    'filter',
  ));
  $this
    ->installEntitySchema('taxonomy_term');
}