InlineBlockEntityOperationsTest.php
Same filename and directory in other branches
Namespace
Drupal\Tests\layout_builder\UnitFile
-
core/
modules/ layout_builder/ tests/ src/ Unit/ InlineBlockEntityOperationsTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\layout_builder\Unit;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\SynchronizableInterface;
use Drupal\layout_builder\InlineBlockEntityOperations;
use Drupal\layout_builder\InlineBlockUsageInterface;
use Drupal\layout_builder\SectionStorage\SectionStorageManagerInterface;
use Drupal\Tests\UnitTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
/**
* Tests Drupal\layout_builder\InlineBlockEntityOperations.
*/
class InlineBlockEntityOperationsTest extends UnitTestCase {
/**
* Tests calling handlePreSave() with an entity that is syncing.
*
* @legacy-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());
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
InlineBlockEntityOperationsTest | Tests Drupal\layout_builder\InlineBlockEntityOperations. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.