You are here

public function JsonResponseTest::testConstructorAddsContentTypeHeader in Zircon Profile 8.0

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

File

vendor/symfony/http-foundation/Tests/JsonResponseTest.php, line 57

Class

JsonResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testConstructorAddsContentTypeHeader() {
  $response = new JsonResponse();
  $this
    ->assertSame('application/json', $response->headers
    ->get('Content-Type'));
}