You are here

public function InlineFragmentRendererTest::testRenderExceptionNoIgnoreErrors in Zircon Profile 8

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

@expectedException \RuntimeException

File

vendor/symfony/http-kernel/Tests/Fragment/InlineFragmentRendererTest.php, line 85

Class

InlineFragmentRendererTest

Namespace

Symfony\Component\HttpKernel\Tests\Fragment

Code

public function testRenderExceptionNoIgnoreErrors() {
  $dispatcher = $this
    ->getMock('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface');
  $dispatcher
    ->expects($this
    ->never())
    ->method('dispatch');
  $strategy = new InlineFragmentRenderer($this
    ->getKernel($this
    ->throwException(new \RuntimeException('foo'))), $dispatcher);
  $this
    ->assertEquals('foo', $strategy
    ->render('/', Request::create('/'))
    ->getContent());
}