You are here

protected function BlockConfigSchemaTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php \Drupal\Tests\block\Kernel\BlockConfigSchemaTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php, line 54

Class

BlockConfigSchemaTest
Tests the block config schema.

Namespace

Drupal\Tests\block\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this->typedConfig = \Drupal::service('config.typed');
  $this->blockManager = \Drupal::service('plugin.manager.block');
  $this
    ->installEntitySchema('block_content');
  $this
    ->installEntitySchema('taxonomy_term');
  $this
    ->installEntitySchema('node');
  $this
    ->installSchema('book', [
    'book',
  ]);
}