You are here

public function HttpCacheTest::testShouldNotCatchExceptions in Zircon Profile 8

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

File

vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTest.php, line 1034

Class

HttpCacheTest

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

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