You are here

protected function EntityRepositoryTest::setUp in Drupal 10

Same name in this branch
  1. 10 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest::setUp()
  2. 10 core/tests/Drupal/KernelTests/Core/Entity/EntityRepositoryTest.php \Drupal\KernelTests\Core\Entity\EntityRepositoryTest::setUp()
Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest::setUp()
  2. 9 core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php \Drupal\Tests\Core\Entity\EntityRepositoryTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Entity/EntityRepositoryTest.php, line 52

Class

EntityRepositoryTest
@coversDefaultClass \Drupal\Core\Entity\EntityRepository @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

protected function setUp() : void {
  parent::setUp();
  $this->entityTypeManager = $this
    ->prophesize(EntityTypeManagerInterface::class);
  $this->languageManager = $this
    ->prophesize(LanguageManagerInterface::class);
  $this->contextRepository = $this
    ->prophesize(ContextRepositoryInterface::class);
  $this->entityRepository = new EntityRepository($this->entityTypeManager
    ->reveal(), $this->languageManager
    ->reveal(), $this->contextRepository
    ->reveal());
}