function CategorizingPluginManagerTraitTest::setUp

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest::setUp()
  2. 8.9.x core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest::setUp()
  3. 11.x core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php \Drupal\Tests\Core\Plugin\CategorizingPluginManagerTraitTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Plugin/CategorizingPluginManagerTraitTest.php, line 32

Class

CategorizingPluginManagerTraitTest
@coversDefaultClass \Drupal\Core\Plugin\CategorizingPluginManagerTrait[[api-linebreak]] @group Plugin @runTestsInSeparateProcesses

Namespace

Drupal\Tests\Core\Plugin

Code

protected function setUp() : void {
  parent::setUp();
  $module_handler = $this->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
  $module_handler->expects($this->any())
    ->method('getModuleList')
    ->willReturn([
    'node' => [],
  ]);
  $module_extension_list = $this->createMock(ModuleExtensionList::class);
  $module_extension_list->expects($this->any())
    ->method('getName')
    ->willReturnCallback(function ($argument) {
    if ($argument == 'node') {
      return 'Node';
    }
    throw new UnknownExtensionException();
  });
  $this->pluginManager = new CategorizingPluginManager($module_handler, $module_extension_list);
  $this->pluginManager
    ->setStringTranslation($this->getStringTranslationStub());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.