protected function ViewsHandlerManagerTest::setupMockedFactory in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php \Drupal\Tests\views\Unit\ViewsHandlerManagerTest::setupMockedFactory()
Setups of the plugin factory.
3 calls to ViewsHandlerManagerTest::setupMockedFactory()
- ViewsHandlerManagerTest::testGetHandlerBaseInformationPropagation in core/
modules/ views/ tests/ src/ Unit/ ViewsHandlerManagerTest.php - Tests getHandler() and its base information propagation.
- ViewsHandlerManagerTest::testGetHandlerNoOverride in core/
modules/ views/ tests/ src/ Unit/ ViewsHandlerManagerTest.php - Tests getHandler() without an override.
- ViewsHandlerManagerTest::testGetHandlerOverride in core/
modules/ views/ tests/ src/ Unit/ ViewsHandlerManagerTest.php - Tests getHandler() with an override.
File
- core/
modules/ views/ tests/ src/ Unit/ ViewsHandlerManagerTest.php, line 57
Class
- ViewsHandlerManagerTest
- Tests the ViewsHandlerManager class.
Namespace
Drupal\Tests\views\UnitCode
protected function setupMockedFactory() {
$this->factory = $this
->createMock('Drupal\\Component\\Plugin\\Factory\\FactoryInterface');
$reflection = new \ReflectionClass($this->handlerManager);
$property = $reflection
->getProperty('factory');
$property
->setAccessible(TRUE);
$property
->setValue($this->handlerManager, $this->factory);
}