You are here

protected function RenderCacheTest::setUp in Zircon Profile 8

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

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/system/src/Tests/Render/RenderCacheTest.php, line 32
Contains \Drupal\system\Tests\Render\RenderCacheTest.

Class

RenderCacheTest
Tests the caching of render items via functional tests.

Namespace

Drupal\system\Tests\Render

Code

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