function InstallUninstallTest::assertModuleNotInstalled

Same name in other branches
  1. 8.9.x core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php \Drupal\Tests\system\Functional\Module\InstallUninstallTest::assertModuleNotInstalled()

Asserts that a module is not yet installed.

@internal

Parameters

string $name: Name of the module to check.

1 call to InstallUninstallTest::assertModuleNotInstalled()
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 280

Class

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

Namespace

Drupal\Tests\system\Functional\Module

Code

protected function assertModuleNotInstalled(string $name) : void {
    $this->assertModules([
        $name,
    ], FALSE);
    $this->assertModuleTablesDoNotExist($name);
}

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