protected function BlockStorageUnitTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php \Drupal\Tests\block\Kernel\BlockStorageUnitTest::setUp()
Overrides KernelTestBase::setUp
File
- core/modules/ block/ tests/ src/ Kernel/ BlockStorageUnitTest.php, line 33 
Class
- BlockStorageUnitTest
- Tests the storage of blocks.
Namespace
Drupal\Tests\block\KernelCode
protected function setUp() {
  parent::setUp();
  $this->controller = $this->container
    ->get('entity_type.manager')
    ->getStorage('block');
  $this->container
    ->get('theme_installer')
    ->install([
    'stark',
  ]);
}