public function JsonResponseTest::testConstructorWithCustomStatus in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/JsonResponseTest.php \Symfony\Component\HttpFoundation\Tests\JsonResponseTest::testConstructorWithCustomStatus()
File
- vendor/
symfony/ http-foundation/ Tests/ JsonResponseTest.php, line 51
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function testConstructorWithCustomStatus() {
$response = new JsonResponse(array(), 202);
$this
->assertSame(202, $response
->getStatusCode());
}