public function ResponseTest::testHasVary

File

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

Class

ResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testHasVary() {
  $response = new Response();
  $this
    ->assertFalse($response
    ->hasVary());
  $response
    ->setVary('User-Agent');
  $this
    ->assertTrue($response
    ->hasVary());
}