protected function EntityFormTest::setUpStorage in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityFormTest.php \Drupal\Tests\Core\Entity\EntityFormTest::setUpStorage()
- 9 core/tests/Drupal/Tests/Core/Entity/EntityFormTest.php \Drupal\Tests\Core\Entity\EntityFormTest::setUpStorage()
Sets up the storage accessed via the entity type manager in the form.
Return value
\Prophecy\Prophecy\ObjectProphecy The storage prophecy.
3 calls to EntityFormTest::setUpStorage()
- EntityFormTest::testGetEntityFromRouteMatchAdd in core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityFormTest.php - Tests EntityForm::getEntityFromRouteMatch() for add forms without a bundle.
- EntityFormTest::testGetEntityFromRouteMatchAddEntity in core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityFormTest.php - Tests EntityForm::getEntityFromRouteMatch() with a config entity bundle.
- EntityFormTest::testGetEntityFromRouteMatchAddStatic in core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityFormTest.php - Tests EntityForm::getEntityFromRouteMatch() with a static bundle.
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityFormTest.php, line 235
Class
- EntityFormTest
- @coversDefaultClass \Drupal\Core\Entity\EntityForm @group Entity
Namespace
Drupal\Tests\Core\EntityCode
protected function setUpStorage() {
$storage = $this
->prophesize(EntityStorageInterface::class);
$entity_type_manager = $this
->prophesize(EntityTypeManagerInterface::class);
$entity_type_manager
->getDefinition($this->entityType
->id())
->willReturn($this->entityType);
$entity_type_manager
->getStorage($this->entityType
->id())
->willReturn($storage
->reveal());
$this->entityForm
->setEntityTypeManager($entity_type_manager
->reveal());
return $storage;
}