function UrlConversionTest::testGetConnectionInfoAsUrl

Tests get connection info as url.

@legacy-covers ::getConnectionInfoAsUrl

Attributes

#[DataProvider('providerGetConnectionInfoAsUrl')]

File

core/tests/Drupal/Tests/Core/Database/UrlConversionTest.php, line 334

Class

UrlConversionTest
Tests for database URL to/from database connection array conversions.

Namespace

Drupal\Tests\Core\Database

Code

public function testGetConnectionInfoAsUrl(array $info, $expected_url) : void {
  Database::addConnectionInfo('default', 'default', $info);
  $url = Database::getConnectionInfoAsUrl();
  $this->assertEquals($expected_url, $url);
}

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