function KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl

Same name in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl()
  2. 10 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl()
  3. 11.x core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl()

@covers ::getDatabaseConnectionInfo

File

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

Class

KernelTestBaseTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase

Namespace

Drupal\KernelTests

Code

public function testGetDatabaseConnectionInfoWithOutManualSetDbUrl() {
    $options = $this->container
        ->get('database')
        ->getConnectionOptions();
    $this->assertSame($this->databasePrefix, $options['prefix']['default']);
}

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