function PathItemTest::setUp

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

Overrides KernelTestBase::setUp

File

core/modules/path/tests/src/Kernel/PathItemTest.php, line 35

Class

PathItemTest
Tests loading and storing data using PathItem.

Namespace

Drupal\Tests\path\Kernel

Code

protected function setUp() {
    parent::setUp();
    $this->installEntitySchema('node');
    $this->installEntitySchema('user');
    $this->installEntitySchema('path_alias');
    $this->installSchema('node', [
        'node_access',
    ]);
    $node_type = NodeType::create([
        'type' => 'foo',
    ]);
    $node_type->save();
    $this->installConfig([
        'language',
    ]);
    ConfigurableLanguage::createFromLangcode('de')->save();
}

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