ModuleExtensionListTest.php
Namespace
Drupal\KernelTests\Core\ExtensionFile
-
core/
tests/ Drupal/ KernelTests/ Core/ Extension/ ModuleExtensionListTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\KernelTests\Core\Extension;
use Drupal\Core\Extension\ModuleExtensionList;
use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
/**
* Tests Drupal\Core\Extension\ModuleExtensionList.
*/
class ModuleExtensionListTest extends KernelTestBase {
/**
* Tests get list.
*
* @legacy-covers ::getList
*/
public function testGetList() : void {
\Drupal::configFactory()->getEditable('core.extension')
->set('module.testing', 1000)
->set('profile', 'testing')
->save();
// The installation profile is provided by a container parameter.
// Saving the configuration doesn't automatically trigger invalidation.
$this->container
->get('kernel')
->rebuildContainer();
/** @var \Drupal\Core\Extension\ModuleExtensionList $module_extension_list */
$module_extension_list = \Drupal::service('extension.list.module');
$extensions = $module_extension_list->getList();
$this->assertArrayHasKey('testing', $extensions);
$this->assertEquals(1000, $extensions['testing']->weight);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ModuleExtensionListTest | Tests Drupal\Core\Extension\ModuleExtensionList. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.