public function JsonResponseTest::testStaticCreateEmptyJsonObject

File

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

Class

JsonResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testStaticCreateEmptyJsonObject() {
  $response = JsonResponse::create();
  $this
    ->assertInstanceOf('Symfony\\Component\\HttpFoundation\\JsonResponse', $response);
  $this
    ->assertSame('{}', $response
    ->getContent());
}