You are here

public function KernelTestBaseTest::testContainerIsolation in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testContainerIsolation()
  2. 9 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testContainerIsolation()

Tests whether the fixture allows us to install modules and configuration.

See also

::testSubsequentContainerIsolation()

File

core/tests/Drupal/KernelTests/KernelTestBaseTest.php, line 155

Class

KernelTestBaseTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase

Namespace

Drupal\KernelTests

Code

public function testContainerIsolation() {
  $this
    ->enableModules([
    'system',
    'user',
  ]);
  $this
    ->assertNull($this
    ->installConfig('user'));
}