public function FragmentHandlerTest::testDeliverWithUnsuccessfulResponse

@expectedException RuntimeException @expectedExceptionMessage Error when rendering "http://localhost/" (Status code is 404).

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fragment/FragmentHandlerTest.php, line 43

Class

FragmentHandlerTest

Namespace

Symfony\Component\HttpKernel\Tests\Fragment

Code

public function testDeliverWithUnsuccessfulResponse() {
  $handler = $this
    ->getHandler($this
    ->returnValue(new Response('foo', 404)));
  $handler
    ->render('/', 'foo');
}