public function KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl in Drupal 9
Same name and namespace in other branches
- 8 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\KernelTestsCode
public function testGetDatabaseConnectionInfoWithOutManualSetDbUrl() {
  $options = $this->container
    ->get('database')
    ->getConnectionOptions();
  $this
    ->assertSame($this->databasePrefix, $options['prefix']);
}