function UrlTest::testRenderAccess
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testRenderAccess()
- 10 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testRenderAccess()
Tests the renderAccess() method.
@covers ::renderAccess @dataProvider accessProvider
Parameters
bool $access: The access value.
File
-
core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 531
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testRenderAccess($access) {
$element = [
'#url' => Url::fromRoute('entity.node.canonical', [
'node' => 3,
]),
];
$this->container
->set('current_user', $this->createMock('Drupal\\Core\\Session\\AccountInterface'));
$this->container
->set('access_manager', $this->getMockAccessManager($access));
$this->assertEquals($access, TestUrl::renderAccess($element));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.