public function KernelTestBaseTest::testContainerIsolation in Drupal 9
Same name and namespace in other branches
- 8 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\KernelTestsCode
public function testContainerIsolation() {
$this
->enableModules([
'system',
'user',
]);
$this
->assertNull($this
->installConfig('user'));
}