You are here

protected function EntityListBuilderTest::setUp in Drupal 9

Same name in this branch
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php \Drupal\Tests\Core\Entity\EntityListBuilderTest::setUp()
  2. 9 core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php \Drupal\Tests\system\Functional\Entity\EntityListBuilderTest::setUp()
Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php \Drupal\Tests\Core\Entity\EntityListBuilderTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php, line 83
Contains \Drupal\Tests\Core\Entity\EntityListBuilderTest.

Class

EntityListBuilderTest
@coversDefaultClass \Drupal\entity_test\EntityTestListBuilder @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

protected function setUp() : void {
  parent::setUp();
  $this->role = $this
    ->createMock('Drupal\\user\\RoleInterface');
  $this->roleStorage = $this
    ->createMock('\\Drupal\\user\\RoleStorageInterface');
  $this->moduleHandler = $this
    ->createMock('\\Drupal\\Core\\Extension\\ModuleHandlerInterface');
  $this->entityType = $this
    ->createMock('\\Drupal\\Core\\Entity\\EntityTypeInterface');
  $this->translationManager = $this
    ->createMock('\\Drupal\\Core\\StringTranslation\\TranslationInterface');
  $this->entityListBuilder = new TestEntityListBuilder($this->entityType, $this->roleStorage);
  $this->redirectDestination = $this
    ->createMock(RedirectDestinationInterface::class);
  $this->container = new ContainerBuilder();
  \Drupal::setContainer($this->container);
}