ModuleHandlerTest.php

Same filename in this branch
  1. 8.9.x core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
  2. 8.9.x core/tests/Drupal/Tests/Core/Extension/ModuleHandlerTest.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
  2. 9 core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerTest.php
  3. 9 core/tests/Drupal/Tests/Core/Extension/ModuleHandlerTest.php
  4. 10 core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
  5. 10 core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerTest.php
  6. 10 core/tests/Drupal/Tests/Core/Extension/ModuleHandlerTest.php
  7. 11.x core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
  8. 11.x core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerTest.php
  9. 11.x core/tests/Drupal/Tests/Core/Extension/ModuleHandlerTest.php

Namespace

Drupal\KernelTests\Core\Extension

File

core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerTest.php

View source
<?php

namespace Drupal\KernelTests\Core\Extension;

use Drupal\KernelTests\KernelTestBase;

/**
 * @coversDefaultClass \Drupal\Core\Extension\ModuleHandler
 *
 * @group Extension
 */
class ModuleHandlerTest extends KernelTestBase {
    
    /**
     * Tests requesting the name of an invalid module.
     *
     * @covers ::getName
     * @group legacy
     * @expectedDeprecation Calling ModuleHandler::getName() with an unknown module is deprecated in Drupal 8.7.0 and support for this will be removed in Drupal 9.0.0, check that the module exists before calling this method. See https://www.drupal.org/node/3024541.
     */
    public function testInvalidGetName() {
        $module_handler = $this->container
            ->get('module_handler');
        $this->assertSame('module_nonsense', $module_handler->getName('module_nonsense'));
    }

}

Classes

Title Deprecated Summary
ModuleHandlerTest @coversDefaultClass \Drupal\Core\Extension\ModuleHandler

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