function EntityFormTest::setUpStorage
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityFormTest.php \Drupal\Tests\Core\Entity\EntityFormTest::setUpStorage()
- 10 core/tests/Drupal/Tests/Core/Entity/EntityFormTest.php \Drupal\Tests\Core\Entity\EntityFormTest::setUpStorage()
- 11.x 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.
2 calls to EntityFormTest::setUpStorage()
- 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 245
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.