function EntityListBuilderTest::setUp
Overrides UnitTestCase::setUp
File
- 
              core/tests/ Drupal/ Tests/ Core/ Entity/ EntityListBuilderTest.php, line 83 
Class
- EntityListBuilderTest
- @coversDefaultClass \Drupal\Core\Entity\EntityListBuilder[[api-linebreak]] @group Entity
Namespace
Drupal\Tests\Core\EntityCode
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
