You are here

protected function UrlIntegrationTest::setUp in Zircon Profile 8

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

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/system/src/Tests/Routing/UrlIntegrationTest.php, line 32
Contains \Drupal\system\Tests\Routing\UrlIntegrationTest.

Class

UrlIntegrationTest
Tests the URL object integration into the access system.

Namespace

Drupal\system\Tests\Routing

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', [
    'router',
  ]);
}