public function HttpCacheTest::testShouldNotCatchExceptions

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/HttpCache/HttpCacheTest.php, line 937

Class

HttpCacheTest

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

public function testShouldNotCatchExceptions() {
  $this
    ->catchExceptions(false);
  $this
    ->setNextResponse();
  $this
    ->request('GET', '/');
  $this
    ->assertExceptionsAreNotCaught();
}