You are here

public function KernelTestBaseTest::testGetDatabaseConnectionInfoWithOutManualSetDbUrl in Zircon Profile 8.0

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

@covers ::getDatabaseConnectionInfo

File

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

Class

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

Namespace

Drupal\KernelTests

Code

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