function DefaultsSectionStorageTest::setUp
Overrides UnitTestCase::setUp
File
- 
              core/
modules/ layout_builder/ tests/ src/ Unit/ DefaultsSectionStorageTest.php, line 56  
Class
- DefaultsSectionStorageTest
 - @coversDefaultClass \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage[[api-linebreak]]
 
Namespace
Drupal\Tests\layout_builder\UnitCode
protected function setUp() : void {
  parent::setUp();
  $this->entityTypeManager = $this->prophesize(EntityTypeManagerInterface::class);
  $entity_type_bundle_info = $this->prophesize(EntityTypeBundleInfoInterface::class);
  $this->sampleEntityGenerator = $this->prophesize(SampleEntityGeneratorInterface::class);
  $definition = new SectionStorageDefinition([
    'id' => 'defaults',
    'class' => DefaultsSectionStorage::class,
  ]);
  $this->plugin = new DefaultsSectionStorage([], '', $definition, $this->entityTypeManager
    ->reveal(), $entity_type_bundle_info->reveal(), $this->sampleEntityGenerator
    ->reveal());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.