You are here

protected function InstallUninstallTest::assertModuleSuccessfullyInstalled in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php \Drupal\Tests\system\Functional\Module\InstallUninstallTest::assertModuleSuccessfullyInstalled()
  2. 9 core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php \Drupal\Tests\system\Functional\Module\InstallUninstallTest::assertModuleSuccessfullyInstalled()

Asserts that a module was successfully installed.

@internal

Parameters

string $name: Name of the module to check.

1 call to InstallUninstallTest::assertModuleSuccessfullyInstalled()
InstallUninstallTest::testInstallUninstall in core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php
Tests that a fixed set of modules can be installed and uninstalled.

File

core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php, line 293

Class

InstallUninstallTest
Install/uninstall core module and confirm table creation/deletion.

Namespace

Drupal\Tests\system\Functional\Module

Code

protected function assertModuleSuccessfullyInstalled(string $name) : void {
  $this
    ->assertModules([
    $name,
  ], TRUE);
  $this
    ->assertModuleTablesExist($name);
  $this
    ->assertModuleConfig($name);
}