UrlGeneratorTest.php in Service Container 7.2
File
lib/Drupal/service_container/Tests/UrlGeneratorTest.php
View source
<?php
namespace Drupal\service_container\Tests;
class UrlGeneratorTest extends ServiceContainerIntegrationTestBase {
public static function getInfo() {
return array(
'name' => 'UrlGenerator',
'description' => '',
'group' => 'service_container',
);
}
public function testUrl() {
$result = \Drupal::service('url_generator')
->url('test-path');
$this
->assertEqual(base_path() . 'test-path', $result);
}
}