public function ResponseTest::testSetSharedMaxAge

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/ResponseTest.php, line 176

Class

ResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testSetSharedMaxAge() {
  $response = new Response();
  $response
    ->setSharedMaxAge(20);
  $cacheControl = $response->headers
    ->get('Cache-Control');
  $this
    ->assertEquals('public, s-maxage=20', $cacheControl);
}