You are here

public function RoutableFragmentRendererTest::testGenerateFragmentUriWithARequest in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Tests/Fragment/RoutableFragmentRendererTest.php \Symfony\Component\HttpKernel\Tests\Fragment\RoutableFragmentRendererTest::testGenerateFragmentUriWithARequest()

File

vendor/symfony/http-kernel/Tests/Fragment/RoutableFragmentRendererTest.php, line 47

Class

RoutableFragmentRendererTest

Namespace

Symfony\Component\HttpKernel\Tests\Fragment

Code

public function testGenerateFragmentUriWithARequest() {
  $request = Request::create('/');
  $request->attributes
    ->set('_format', 'json');
  $request
    ->setLocale('fr');
  $controller = new ControllerReference('controller', array(), array());
  $this
    ->assertEquals('/_fragment?_path=_format%3Djson%26_locale%3Dfr%26_controller%3Dcontroller', $this
    ->callGenerateFragmentUriMethod($controller, $request));
}