public function HttpCacheTest::testDoesNotCacheResponsesWithoutFreshnessInformationOrAValidator

File

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

Class

HttpCacheTest

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

public function testDoesNotCacheResponsesWithoutFreshnessInformationOrAValidator() {
  $this
    ->setNextResponse();
  $this
    ->request('GET', '/');
  $this
    ->assertEquals(200, $this->response
    ->getStatusCode());
  $this
    ->assertTraceNotContains('store');
}