You are here

public function KernelTestBaseTest::testCompiledContainerIsDestructed in Zircon Profile 8.0

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

@covers ::getCompiledContainerBuilder @depends testCompiledContainer

The point of this test is to have integration level testing.

File

core/tests/Drupal/KernelTests/KernelTestBaseTest.php, line 160
Contains \Drupal\KernelTests\KernelTestBaseTest.

Class

KernelTestBaseTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase @group PHPUnit

Namespace

Drupal\KernelTests

Code

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