protected function BookManagerTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/book/tests/src/Unit/BookManagerTest.php \Drupal\Tests\book\Unit\BookManagerTest::setUp()
- 10 core/modules/book/tests/src/Unit/BookManagerTest.php \Drupal\Tests\book\Unit\BookManagerTest::setUp()
Overrides UnitTestCase::setUp
File
- core/
modules/ book/ tests/ src/ Unit/ BookManagerTest.php, line 60
Class
- BookManagerTest
- @coversDefaultClass \Drupal\book\BookManager @group book
Namespace
Drupal\Tests\book\UnitCode
protected function setUp() {
$this->entityTypeManager = $this
->createMock(EntityTypeManagerInterface::class);
$this->translation = $this
->getStringTranslationStub();
$this->configFactory = $this
->getConfigFactoryStub([]);
$this->bookOutlineStorage = $this
->createMock('Drupal\\book\\BookOutlineStorageInterface');
$this->renderer = $this
->createMock('\\Drupal\\Core\\Render\\RendererInterface');
$this->bookManager = new BookManager($this->entityTypeManager, $this->translation, $this->configFactory, $this->bookOutlineStorage, $this->renderer);
}