UrlAlterTest.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\KernelTests\Core\PathFile
core/tests/Drupal/KernelTests/Core/Path/UrlAlterTest.phpView source
<?php
namespace Drupal\KernelTests\Core\Path;
use Drupal\Core\Url;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests the capability to alter URLs.
*
* @group Path
*
* @see \Drupal\Core\Routing\UrlGenerator::processPath
*/
class UrlAlterTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
'path',
'url_alter_test',
'user',
];
public function testUrlWithQueryString() {
// Test outbound query string altering.
$url = Url::fromRoute('user.login');
$this
->assertEquals(\Drupal::request()
->getBaseUrl() . '/user/login?foo=bar', $url
->toString());
}
}
Classes
Name | Description |
---|---|
UrlAlterTest | Tests the capability to alter URLs. |