You are here

protected function HttpCacheTestCase::setUp in Zircon Profile 8

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

File

vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTestCase.php, line 32

Class

HttpCacheTestCase

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

protected function setUp() {
  $this->kernel = null;
  $this->cache = null;
  $this->esi = null;
  $this->caches = array();
  $this->cacheConfig = array();
  $this->request = null;
  $this->response = null;
  $this->responses = array();
  $this->catch = false;
  $this
    ->clearDirectory(sys_get_temp_dir() . '/http_cache');
}