You are here

public function ResponseTest::testHasVary in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/ResponseTest.php \Symfony\Component\HttpFoundation\Tests\ResponseTest::testHasVary()

File

vendor/symfony/http-foundation/Tests/ResponseTest.php, line 782

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());
}