public function ViewExecutableTest::testGetUrlWithPathNoPlaceholders in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/ViewExecutableTest.php \Drupal\Tests\views\Unit\ViewExecutableTest::testGetUrlWithPathNoPlaceholders()
@covers ::getUrl
File
- core/
modules/ views/ tests/ src/ Unit/ ViewExecutableTest.php, line 177
Class
- ViewExecutableTest
- @coversDefaultClass \Drupal\views\ViewExecutable @group views
Namespace
Drupal\Tests\views\UnitCode
public function testGetUrlWithPathNoPlaceholders() {
$this->displayHandler
->expects($this
->any())
->method('getRoutedDisplay')
->willReturn($this->displayHandler);
$this->displayHandlers
->expects($this
->any())
->method('get')
->willReturn($this->displayHandler);
$this->displayHandler
->expects($this
->any())
->method('getUrlInfo')
->willReturn(Url::fromRoute('views.test.page_1'));
$this->displayHandler
->expects($this
->any())
->method('getPath')
->willReturn('test-path');
$this
->assertEquals(Url::fromRoute('views.test.page_1'), $this->executable
->getUrl());
}