function ConfirmFormHelperTest::testCancelLinkRouteWithParams
@covers ::buildCancelLink
      
    
Tests a cancel link route with parameters.
File
- 
              core/tests/ Drupal/ Tests/ Core/ Form/ ConfirmFormHelperTest.php, line 58 
Class
- ConfirmFormHelperTest
- @coversDefaultClass \Drupal\Core\Form\ConfirmFormHelper[[api-linebreak]] @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testCancelLinkRouteWithParams() : void {
  $expected = Url::fromRoute('foo_bar.baz', [
    'baz' => 'banana',
  ], [
    'absolute' => TRUE,
  ]);
  $form = $this->createMock('Drupal\\Core\\Form\\ConfirmFormInterface');
  $form->expects($this->any())
    ->method('getCancelUrl')
    ->willReturn($expected);
  $link = ConfirmFormHelper::buildCancelLink($form, new Request());
  $this->assertEquals($expected, $link['#url']);
  $this->assertSame([
    'contexts' => [
      'url.query_args:destination',
    ],
  ], $link['#cache']);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
