You are here

protected function LegacyEntityDisplayBaseTest::setUp in Drupal 8

Overrides KernelTestBase::setUp

File

core/tests/Drupal/KernelTests/Core/Entity/LegacyEntityDisplayBaseTest.php, line 31

Class

LegacyEntityDisplayBaseTest
Tests Deprecated EntityDisplayBase functionality.

Namespace

Drupal\KernelTests\Core\Entity

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('comment');
  $this
    ->installEntitySchema('entity_test');
  $this
    ->installSchema('user', [
    'users_data',
  ]);
}