function KernelTestBaseTest::testSetUpDoesNotLeak

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUpDoesNotLeak()
  2. 8.9.x core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUpDoesNotLeak()
  3. 11.x core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUpDoesNotLeak()

@covers ::setUp
@depends testSetUp

File

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

Class

KernelTestBaseTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase[[api-linebreak]]

Namespace

Drupal\KernelTests

Code

public function testSetUpDoesNotLeak() : void {
  $this->assertArrayNotHasKey('destroy-me', $GLOBALS);
  // Ensure that we have a different database prefix.
  $schema = $this->container
    ->get('database')
    ->schema();
  $this->assertFalse($schema->tableExists('foo'));
}

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