You are here

protected function EntityKernelTestBase::uninstallModule in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php \Drupal\KernelTests\Core\Entity\EntityKernelTestBase::uninstallModule()

Uninstalls a module and refreshes services.

Parameters

string $module: The module to uninstall.

File

core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php, line 160

Class

EntityKernelTestBase
Defines an abstract test base for entity kernel tests.

Namespace

Drupal\KernelTests\Core\Entity

Code

protected function uninstallModule($module) {
  $this
    ->disableModules([
    $module,
  ]);
  $this
    ->refreshServices();
}