You are here

protected function OverridesSectionStorageTest::setUp in Drupal 8

Same name in this branch
  1. 8 core/modules/layout_builder/tests/src/Unit/OverridesSectionStorageTest.php \Drupal\Tests\layout_builder\Unit\OverridesSectionStorageTest::setUp()
  2. 8 core/modules/layout_builder/tests/src/Kernel/OverridesSectionStorageTest.php \Drupal\Tests\layout_builder\Kernel\OverridesSectionStorageTest::setUp()
Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/OverridesSectionStorageTest.php \Drupal\Tests\layout_builder\Unit\OverridesSectionStorageTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/layout_builder/tests/src/Unit/OverridesSectionStorageTest.php, line 59

Class

OverridesSectionStorageTest
@coversDefaultClass \Drupal\layout_builder\Plugin\SectionStorage\OverridesSectionStorage

Namespace

Drupal\Tests\layout_builder\Unit

Code

protected function setUp() {
  parent::setUp();
  $this->entityTypeManager = $this
    ->prophesize(EntityTypeManagerInterface::class);
  $this->entityFieldManager = $this
    ->prophesize(EntityFieldManagerInterface::class);
  $section_storage_manager = $this
    ->prophesize(SectionStorageManagerInterface::class);
  $this->entityRepository = $this
    ->prophesize(EntityRepositoryInterface::class);
  $account = $this
    ->prophesize(AccountInterface::class);
  $definition = new SectionStorageDefinition([
    'id' => 'overrides',
    'class' => OverridesSectionStorage::class,
  ]);
  $this->plugin = new OverridesSectionStorage([], 'overrides', $definition, $this->entityTypeManager
    ->reveal(), $this->entityFieldManager
    ->reveal(), $section_storage_manager
    ->reveal(), $this->entityRepository
    ->reveal(), $account
    ->reveal());
}