You are here

protected function CompactUserRenderTest::setUp in Lightning Core 8.4

Same name and namespace in other branches
  1. 8.5 tests/src/Kernel/CompactUserRenderTest.php \Drupal\Tests\lightning_core\Kernel\CompactUserRenderTest::setUp()
  2. 8.3 tests/src/Kernel/CompactUserRenderTest.php \Drupal\Tests\lightning_core\Kernel\CompactUserRenderTest::setUp()

Overrides KernelTestBase::setUp

File

tests/src/Kernel/CompactUserRenderTest.php, line 29

Class

CompactUserRenderTest
@group lightning_core

Namespace

Drupal\Tests\lightning_core\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', 'sequences');
  $this
    ->installSchema('file', 'file_usage');
  $this
    ->installEntitySchema('file');
  $this
    ->installEntitySchema('user');
  $this
    ->installConfig('image');
  $this
    ->installConfig('user');
  $this
    ->installConfig('lightning_core');
}