You are here

public function KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl in Drupal 10

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

@covers ::getDatabaseConnectionInfo

File

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

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']);
}