class InlineBlockEntityOperationsTest

Same name and namespace in other branches
  1. 11.x core/modules/layout_builder/tests/src/Unit/InlineBlockEntityOperationsTest.php \Drupal\Tests\layout_builder\Unit\InlineBlockEntityOperationsTest

@coversDefaultClass \Drupal\layout_builder\InlineBlockEntityOperations

@group layout_builder

Hierarchy

Expanded class hierarchy of InlineBlockEntityOperationsTest

File

core/modules/layout_builder/tests/src/Unit/InlineBlockEntityOperationsTest.php, line 19

Namespace

Drupal\Tests\layout_builder\Unit
View source
class InlineBlockEntityOperationsTest extends UnitTestCase {
  
  /**
   * Tests calling handlePreSave() with an entity that is syncing.
   *
   * @covers ::handlePreSave
   */
  public function testPreSaveWithSyncingEntity() : void {
    $entity = $this->prophesize(SynchronizableInterface::class);
    $entity->isSyncing()
      ->willReturn(TRUE);
    $entity_type_manager = $this->prophesize(EntityTypeManagerInterface::class);
    $inline_block_usage = $this->prophesize(InlineBlockUsageInterface::class);
    $section_storage_manager = $this->prophesize(SectionStorageManagerInterface::class);
    $section_storage_manager->findByContext()
      ->shouldNotBeCalled();
    $inline_block_entity_operations = new InlineBlockEntityOperations($entity_type_manager->reveal(), $inline_block_usage->reveal(), $section_storage_manager->reveal());
    $inline_block_entity_operations->handlePreSave($entity->reveal());
  }

}

Members

Title Sort descending Modifiers Object type Summary
InlineBlockEntityOperationsTest::testPreSaveWithSyncingEntity public function Tests calling handlePreSave() with an entity that is syncing.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.